Skip to content

Commit

Permalink
Update integration-tests.yml (#437)
Browse files Browse the repository at this point in the history
* Use macos-12 where colima still works
  • Loading branch information
loosebazooka authored May 3, 2024
1 parent 8217a9e commit 866fc74
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,25 @@ on: [push, pull_request]

permissions: read-all

concurrency:
# On master/release, we don't want any jobs cancelled
# On PR branches, we cancel the job if new commits are pushed
# More info: https://stackoverflow.com/a/70972844/1261287
group: ${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}

jobs:
build:
name: PR unit tests
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, macos-12]
fail-fast: false
runs-on: ${{ matrix.os }}

steps:
- name: start docker
if: ${{ matrix.os == 'macos-latest' }}
if: ${{ matrix.os == 'macos-12' }}
run: |
brew install docker
colima start
Expand Down

0 comments on commit 866fc74

Please sign in to comment.