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 ca248cb commit 1c93543Copy full SHA for 1c93543
.github/workflows/ci-python.yml
@@ -10,14 +10,15 @@ concurrency:
10
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
11
cancel-in-progress: true
12
13
-defaults:
14
- run:
15
- shell: bash --noprofile --norc -eo pipefail -ux {0}
+strategy:
+ fail-fast: false
+ matrix:
16
+ os: [ubuntu-latest, macos-latest, windows-latest]
17
18
jobs:
19
lint:
- name: Lint
20
- runs-on: ubuntu-latest
+ name: Lint (${{ matrix.os }})
21
+ runs-on: ${{ matrix.os }}
22
23
steps:
24
- uses: actions/checkout@v4
@@ -45,8 +46,8 @@ jobs:
45
46
run: mypy python-objectstore-client
47
48
test:
- name: Test
49
+ name: Test (${{ matrix.os }})
50
51
52
53
0 commit comments