File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -5,17 +5,25 @@ on: [push, pull_request]
55
66permissions : read-all
77
8+ concurrency :
9+ # On master/release, we don't want any jobs cancelled
10+ # On PR branches, we cancel the job if new commits are pushed
11+ # More info: https://stackoverflow.com/a/70972844/1261287
12+ group : ${{ github.ref }}
13+ cancel-in-progress : ${{ github.ref != 'refs/heads/master' }}
14+
815jobs :
916 build :
1017 name : PR unit tests
1118 strategy :
1219 matrix :
13- os : [ubuntu-latest, macos-latest]
20+ os : [ubuntu-latest, macos-12]
21+ fail-fast : false
1422 runs-on : ${{ matrix.os }}
1523
1624 steps :
1725 - name : start docker
18- if : ${{ matrix.os == 'macos-latest ' }}
26+ if : ${{ matrix.os == 'macos-12 ' }}
1927 run : |
2028 brew install docker
2129 colima start
You can’t perform that action at this time.
0 commit comments