-
Notifications
You must be signed in to change notification settings - Fork 2
78 lines (65 loc) · 1.94 KB
/
Copy pathpython-tests.yml
File metadata and controls
78 lines (65 loc) · 1.94 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name: Python tests
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
PYTHONUNBUFFERED: "1"
FORCE_COLOR: "1"
HATCH_VERSION: "1.18.0"
jobs:
test:
permissions:
contents: read
id-token: write
runs-on: ${{matrix.os}}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
python-version:
- '3.10'
- '3.11'
- '3.12'
- '3.13'
- '3.14'
name: "Test on ${{matrix.os}} with Python ${{matrix.python-version}}"
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: "${{matrix.python-version}}"
cache: "pip"
- name: Install Hatch
uses: pypa/hatch@f647ed70d49adb885f53a27d1c7f5bdaeacf2c60 # install
with:
version: "${{ env.HATCH_VERSION }}"
- run: hatch env find
- name: Run type check
run: hatch run types:check
# - name: Run formatter
# run: hatch fmt --check
- name: Run pre-commit
run: hatch run pre-commit:run
env:
SKIP: nitpick,hatch-fmt,hatch-types
- name: Run tests
run: hatch test --python ${{ matrix.python-version }} --cover --randomize --retries 2 --retry-delay 1
- uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
with:
name: "build-${{ matrix.python-version }}"
fail_ci_if_error: true
use_oidc: true
- name: Upload test results to Codecov
if: ${{ !cancelled() }}
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
with:
name: "build-${{ matrix.python-version }}"
fail_ci_if_error: true
use_oidc: true
report_type: test_results