Skip to content

Commit 2211f4d

Browse files
authored
Add Python 3.11 to CI. (#17)
1 parent 57e3053 commit 2211f4d

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,21 @@ jobs:
2727
fail-fast: false
2828
matrix:
2929
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
30-
python-version: ['3.7', '3.8', '3.9', '3.10']
30+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
3131

3232
steps:
3333
- uses: actions/checkout@v2
3434
- uses: conda-incubator/setup-miniconda@v2
3535
with:
36-
auto-update-conda: true
36+
auto-update-conda: false
3737
python-version: ${{ matrix.python-version }}
38+
channels: conda-forge,nodefaults
39+
mamba-version: "*"
3840

3941
- name: Install core dependencies.
4042
shell: bash -l {0}
4143
run: conda install -c conda-forge tox-conda coverage mamba
4244

43-
4445
# Unit, integration, and end-to-end tests.
4546

4647
- name: Run unit tests and doctests.
@@ -60,8 +61,3 @@ jobs:
6061
if: runner.os == 'Linux' && matrix.python-version == '3.8'
6162
shell: bash -l {0}
6263
run: bash <(curl -s https://codecov.io/bash) -F end_to_end -c
63-
64-
- name: Validate codecov.yml
65-
if: runner.os == 'Linux' && matrix.python-version == '3.8'
66-
shell: bash -l {0}
67-
run: cat codecov.yml | curl --data-binary @- https://codecov.io/validate

0 commit comments

Comments
 (0)