-
-
Notifications
You must be signed in to change notification settings - Fork 3
68 lines (55 loc) · 1.72 KB
/
py-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
60
61
62
63
64
65
66
67
68
name: Run tests
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
py-test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.11", "3.12", "3.13", "3.14-dev"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
submodules: "true"
- name: Install Python
uses: ./.github/actions/setup-py
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
run: nox -s test
# TODO: Could we switch over to gather coverage from the normal test runs and combining
# the result once https://github.com/nedbat/coveragepy/issues/1002 is fixed?
upload-coverage:
# needs: [test]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
submodules: "true"
- name: Install Python
uses: ./.github/actions/setup-py
- name: Record coverage
run: nox -s test-coverage
- name: Upload coverage
uses: paambaati/codeclimate-action@f429536ee076d758a24705203199548125a28ca7
env:
CC_TEST_REPORTER_ID: a965935acdc9066802d7201945219784c0f24d22e8a2dff0e6529207726bc8af
with:
coverageLocations: .coverage.xml:coverage.py
- name: Archive coverage
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b
with:
name: coverage
path: ./coverage_html
if-no-files-found: error