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.
macos-latest
1 parent 8df345b commit 902340dCopy full SHA for 902340d
.github/workflows/test-python-package.yml
@@ -17,11 +17,11 @@ on:
17
jobs:
18
build:
19
name: Test on ${{ matrix.os }} with all supported Python versions
20
- runs-on: ${{ format('{0}-latest', matrix.os) }} # "-latest" is added here so we can use OS in the format expected by CodeCov
+ runs-on: ${{ format('{0}', matrix.os) }} # "-latest" is added here so we can use OS in the format expected by CodeCov
21
22
strategy:
23
matrix:
24
- os: [ubuntu, macos]
+ os: [ubuntu-latest, macos-13]
25
26
steps:
27
- uses: actions/checkout@v4
0 commit comments