Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 58fc645

Browse files
committedMay 14, 2024·
Update CI.
1 parent ca53e5b commit 58fc645

File tree

1 file changed

+27
-19
lines changed

1 file changed

+27
-19
lines changed
 

‎.github/workflows/main.yml

+27-19
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ concurrency:
55
group: ${{ github.head_ref || github.run_id }}
66
cancel-in-progress: true
77

8-
env:
9-
CONDA_EXE: mamba
10-
118
on:
129
push:
1310
branches:
@@ -18,6 +15,21 @@ on:
1815

1916
jobs:
2017

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+
2133
run-tests:
2234

2335
name: Run tests for ${{ matrix.os }} on ${{ matrix.python-version }}
@@ -31,33 +43,29 @@ jobs:
3143

3244
steps:
3345
- uses: actions/checkout@v4
34-
- uses: conda-incubator/setup-miniconda@v2
46+
- uses: actions/setup-python@v5
3547
with:
36-
auto-update-conda: false
3748
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
4452

4553
# Unit, integration, and end-to-end tests.
4654

4755
- name: Run unit tests and doctests.
4856
shell: bash -l {0}
4957
run: tox -e pytest -- -m "unit or (not integration and not end_to_end)" --cov=./ --cov-report=xml -n auto
5058

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
5563

5664
- name: Run end-to-end tests.
5765
shell: bash -l {0}
5866
run: tox -e pytest -- -m end_to_end --cov=./ --cov-report=xml -n auto
5967

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

Comments
 (0)
Please sign in to comment.