-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (49 loc) · 1.41 KB
/
test.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
53
54
55
56
57
58
59
name: "Testing"
on:
push:
branches: [main, github-actions-test]
paths:
- "**.py"
- "**.ipynb"
- "pyproject.toml"
pull_request:
branches: [main]
paths:
- "**.py"
- "**.ipynb"
- "pyproject.toml"
jobs:
build:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.12]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Build using Python ${{matrix.python-version}}
uses: actions/setup-python@v5
with:
python-version: ${{matrix.python-version}}
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{matrix.os}}-${{matrix.python-version}}-${{hashFiles('pyproject.toml')}}
- name: Setting up rust
run: rustup default nightly
- name: Installing dependencies [pip]
run: |
pip install --upgrade pip
pip install pytest-cov
pip install -e .[test]
- name: Adding annotations [pytest]
run: pip install pytest-github-actions-annotate-failures
- name: Unit testing [pytest]
run: |
pytest --cov=geomfum --cov-report=xml tests -m "(not rematching)"
- name: Uploading coverage reports to Codecov
if: ${{github.ref == 'refs/heads/main'}}
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}