-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (52 loc) · 1.55 KB
/
upload-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: grip-on-software/upload
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4.1.4
with:
fetch-depth: 0
- uses: actions/setup-python@v5.1.0
with:
python-version: "${{ matrix.python }}"
- name: Install development packages for some dependencies
run: |
sudo apt-get update
sudo apt-get install gnupg libgpg-error-dev libgpgme-dev libssl-dev swig
- name: Install dependencies for test
run: make setup_test
- name: Unit test and coverage
run: make coverage
- name: Mypy typing coverage
run: |
make setup_analysis
make mypy
- name: Adjust source paths in coverage for Sonar
run: |
sed -i "s/<source>\/home\/runner\/work\/upload\/upload/<source>\/github\/workspace/g" \
test-reports/cobertura.xml mypy-report/cobertura.xml
- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@v2.1.1
if: "${{ matrix.python == '3.8.18' }}"
env:
SONAR_TOKEN: "${{ secrets.SONAR_TOKEN }}"
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- name: Coveralls upload
run: |
pip install coveralls
coveralls
if: "${{ success() }}"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
strategy:
matrix:
python:
- '3.8.18'
- '3.12.3'