We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
macos
1 parent 144feb9 commit cee95d0Copy full SHA for cee95d0
.github/workflows/ci.yaml
@@ -4,15 +4,30 @@
4
name: CI
5
on: [ push, pull_request, workflow_dispatch ]
6
jobs:
7
- test:
+
8
+ test-on-ubuntu:
9
runs-on: ubuntu-latest
10
timeout-minutes: 5
11
+ name: Test on ubuntu
12
+ steps:
13
+ - uses: actions/checkout@v3
14
+ with:
15
+ submodules: recursive
16
+ - run: test-cases/integration-test.sh
17
18
+ test-on-macos:
19
+ runs-on: ${{ matrix.os }}
20
+ timeout-minutes: 5
21
strategy:
22
+ matrix:
23
+ os: [ macos-11, macos-12 ]
24
fail-fast: false
- max-parallel: 32
25
+ max-parallel: 64
26
+ name: Test on ${{ matrix.os }}
27
28
steps:
29
- uses: actions/checkout@v3
30
with:
31
submodules: recursive
32
+ - run: brew install coreutils gnu-sed
33
- run: test-cases/integration-test.sh
0 commit comments