We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e884c00 commit eeff5e9Copy full SHA for eeff5e9
.github/workflows/ci.yml
@@ -97,7 +97,7 @@ jobs:
97
98
tests-unix:
99
name: tests / ${{ matrix.python.key || matrix.python }} / ${{ matrix.os }}
100
- runs-on: ${{ matrix.os }}-latest
+ runs-on: ${{ matrix.os }}
101
102
needs: [packaging, determine-changes]
103
if: >-
@@ -107,7 +107,7 @@ jobs:
107
strategy:
108
fail-fast: true
109
matrix:
110
- os: [Ubuntu, MacOS]
+ os: [ubuntu-latest, macos-12]
111
python:
112
- "3.8"
113
- "3.9"
@@ -129,7 +129,7 @@ jobs:
129
sudo apt-get install bzr
130
131
- name: Install MacOS dependencies
132
- if: matrix.os == 'MacOS'
+ if: matrix.os == 'macos-12'
133
run: brew install breezy
134
135
- run: pip install nox
0 commit comments