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 c9c0c03 commit 502c9acCopy full SHA for 502c9ac
.github/workflows/CI.yml
@@ -4,7 +4,10 @@ on: [push, pull_request]
4
5
jobs:
6
lint:
7
- runs-on: debian-latest
+ strategy:
8
+ matrix:
9
+ platform: [debian-latest, ubuntu-latest, macos-latest, windows-latest]
10
+ runs-on: ${{ matrix.platform }}
11
steps:
12
- name: Checkout code
13
uses: actions/checkout@v4
@@ -18,7 +21,7 @@ jobs:
18
21
test:
19
22
strategy:
20
23
matrix:
- platform: [debian-latest]
24
25
runs-on: ${{ matrix.platform }}
26
27
0 commit comments