Skip to content

Commit 866fc74

Browse files
authored
Update integration-tests.yml (#437)
* Use macos-12 where colima still works
1 parent 8217a9e commit 866fc74

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/integration-tests.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,25 @@ on: [push, pull_request]
55

66
permissions: 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+
815
jobs:
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

0 commit comments

Comments
 (0)