-
Notifications
You must be signed in to change notification settings - Fork 54
48 lines (43 loc) · 1.15 KB
/
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
name: Run Tests
on:
pull_request:
push:
branches:
- main
jobs:
unit-tests:
name: Run Tests
runs-on: ubuntu-latest
strategy:
matrix:
# Select the Python versions to test against
os: ["ubuntu-latest", "macos-latest"]
python-version: ["3.10", "3.11"]
fail-fast: true
steps:
- name: Check out the code
uses: actions/[email protected]
with:
fetch-depth: 1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# Install Hatch
- name: Install Hatch
uses: pypa/hatch@install
# Install the dependencies
- name: Check docstrings
run: |
hatch run dev:docstrings
# Run the unit tests and build the coverage report
- name: Run Tests
run: hatch run dev:coverage
- name: Upload code coverage
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
name: gpjax
flags: unittests
env_vars: OS,PYTHON