-
Notifications
You must be signed in to change notification settings - Fork 9
47 lines (39 loc) · 1011 Bytes
/
ci.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
name: Python CI
on:
push:
branches: [ vara, vara-dev ]
pull_request:
branches: [ vara, vara-dev ]
merge_group:
branches: [ vara, vara-dev ]
env:
BB_TMP_DIR: $(pwd)/benchbuild/tmp
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: ./.github/actions/dependenciesActions
- name: Run unittests
run: |
echo $BB_TMP_DIR
mkdir -p benchbuild
coverage run -p -m pytest varats varats-core tests
rm -rf benchbuild
- name: Combine Coverage
run: |
coverage combine -a --rcfile=.coveragerc
coverage xml
- name: Upload coverage report
uses: codecov/codecov-action@v3
with:
file: ./coverage.xml