@@ -5,9 +5,6 @@ concurrency:
5
5
group : ${{ github.head_ref || github.run_id }}
6
6
cancel-in-progress : true
7
7
8
- env :
9
- CONDA_EXE : mamba
10
-
11
8
on :
12
9
push :
13
10
branches :
18
15
19
16
jobs :
20
17
18
+ run-type-checking :
19
+
20
+ name : Run tests for type-checking
21
+ runs-on : ubuntu-latest
22
+
23
+ steps :
24
+ - uses : actions/checkout@v4
25
+ - uses : actions/setup-python@v5
26
+ with :
27
+ python-version-file : .python-version
28
+ allow-prereleases : true
29
+ cache : pip
30
+ - run : pip install tox-uv
31
+ - run : tox -e typing
32
+
21
33
run-tests :
22
34
23
35
name : Run tests for ${{ matrix.os }} on ${{ matrix.python-version }}
@@ -31,33 +43,29 @@ jobs:
31
43
32
44
steps :
33
45
- uses : actions/checkout@v4
34
- - uses : conda-incubator /setup-miniconda@v2
46
+ - uses : actions /setup-python@v5
35
47
with :
36
- auto-update-conda : false
37
48
python-version : ${{ matrix.python-version }}
38
- channels : conda-forge,nodefaults
39
- miniforge-variant : Mambaforge
40
-
41
- - name : Install core dependencies.
42
- shell : bash -l {0}
43
- run : mamba install -c conda-forge tox-conda coverage
49
+ cache : pip
50
+ allow-prereleases : true
51
+ - run : pip install tox-uv
44
52
45
53
# Unit, integration, and end-to-end tests.
46
54
47
55
- name : Run unit tests and doctests.
48
56
shell : bash -l {0}
49
57
run : tox -e pytest -- -m "unit or (not integration and not end_to_end)" --cov=./ --cov-report=xml -n auto
50
58
51
- - name : Upload coverage report for unit tests and doctests.
52
- if : runner.os == 'Linux' && matrix.python-version == '3.8'
53
- shell : bash -l {0}
54
- run : bash <(curl -s https://codecov.io/bash) -F unit -c
59
+ - name : Upload unit test coverage reports to Codecov with GitHub Action
60
+ uses : codecov/codecov-action@v4
61
+ with :
62
+ flags : unit
55
63
56
64
- name : Run end-to-end tests.
57
65
shell : bash -l {0}
58
66
run : tox -e pytest -- -m end_to_end --cov=./ --cov-report=xml -n auto
59
67
60
- - name : Upload coverage reports of end-to-end tests.
61
- if : runner.os == 'Linux' && matrix.python-version == '3.8'
62
- shell : bash -l {0}
63
- run : bash <(curl -s https://codecov.io/bash) -F end_to_end -c
68
+ - name : Upload end_to_end test coverage reports to Codecov with GitHub Action
69
+ uses : codecov/codecov-action@v4
70
+ with :
71
+ flags : end_to_end
0 commit comments