-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (41 loc) · 1.37 KB
/
test.yml
File metadata and controls
45 lines (41 loc) · 1.37 KB
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
name: Run Tests
# Run the test suite on pull requests and pushes to main branch
on:
pull_request:
push:
branches:
- main
schedule:
- cron: '0 23 * * Sun'
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10", "3.13"]
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4.5.2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v5.1.0
with:
python-version: ${{ matrix.python-version }}
# Install dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install hatch
pip install -e ".[tests,dev]"
- name: Run test suite
run: hatch run +py=${{ matrix.python-version }} test:run
# If you use this step and have a private repo- then you will need to get a
# token from codecov and
# save it as a github secret called CODECOV_TOKEN
- name: Upload to codecov
if: runner.os == 'macOS' && matrix.python-version == '3.13'
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
with:
#token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
files: ./coverage.xml