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 f8383e8 commit d356d74Copy full SHA for d356d74
.github/workflows/presubmit.yml
@@ -1,5 +1,3 @@
1
-name: Check code before submitting
2
-
3
permissions: read-all
4
5
on:
.github/workflows/run-tests.yml
-name: Compile and run unit tests
@@ -10,8 +8,15 @@ on:
10
8
11
9
jobs:
12
run-tests:
13
- runs-on: ubuntu-latest
14
+ name: Tests on ${{ matrix.os }}
+ runs-on: ${{ matrix.os }}
+ strategy:
+ fail-fast: false
15
+ matrix:
16
+ os:
17
+ - ubuntu-latest
18
+ - windows-latest
19
+ - macos-latest
20
steps:
21
- name: Check out repository
22
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
0 commit comments