We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbb4885 commit df265cfCopy full SHA for df265cf
.github/workflows/main.yml
@@ -2,17 +2,12 @@ on:
2
push:
3
jobs:
4
main:
5
- runs-on: macos-14
+ runs-on: ubuntu-latest
6
+ strategy:
7
+ matrix:
8
+ instance: [0, 1, 2, 3]
9
steps:
- - run: |
- set -x
- brew install docker colima
10
- colima start || (cat /Users/runner/.colima/_lima/colima/ha.stderr.log && exit 1)
11
- - run: docker run --rm ubuntu:jammy bash -c 'echo hi'
12
- main2:
13
- runs-on: macos-13
14
- steps:
15
16
17
- colima start
18
+ - run: ip addr
+ if: matrix.instance == 0
+ - run: echo worker
+ if: matrix.instance != 0
0 commit comments