We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8effdd commit 30d9bfbCopy full SHA for 30d9bfb
1 file changed
.github/workflows/full_tests.yml
@@ -4,15 +4,16 @@ on:
4
pull_request:
5
branches: [main]
6
types: [synchronize, opened, reopened]
7
- workflow_dispatch:
8
- schedule:
9
- - cron: "0 12 * * *" # Daily at noon UTC
10
11
12
jobs:
13
build-and-test:
14
15
- runs-on: [ubuntu-latest, 'windows-latest', 'macos-latest']
+ runs-on: ${{ matrix.os }}
+ strategy:
+ fail-fast: false
+ matrix:
16
+ os: ["ubuntu-latest", "macos-latest", "windows-latest"]
17
18
steps:
19
- uses: actions/checkout@v3
0 commit comments