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 3fd0336 commit e400a32Copy full SHA for e400a32
.github/workflows/presubmit.yaml
@@ -31,7 +31,10 @@ jobs:
31
32
# Job 2: Unit Tests
33
unit-tests:
34
- runs-on: ubuntu-latest
+ strategy:
35
+ matrix:
36
+ os: [ ubuntu-latest, macos-latest, windows-latest ]
37
+ runs-on: ${{ matrix.os }} # Use the OS from the matrix
38
steps:
39
- name: Checkout code
40
uses: actions/checkout@v4 # Use the latest stable version of actions/checkout
@@ -49,7 +52,10 @@ jobs:
49
52
50
53
# Job 3: Verify Plugin
51
54
verify-plugin:
55
56
57
58
59
60
61
0 commit comments