We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dccc957 commit 560c801Copy full SHA for 560c801
.github/workflows/ci.yaml
@@ -11,7 +11,9 @@ jobs:
11
timeout-minutes: 5
12
strategy:
13
matrix:
14
- os: [ ubuntu-latest, macos-11, macos-latest ]
+ # the OS supported by GitHub Actions
15
+ # https://docs.github.com/en/actions/using-github-hosted-runners/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
16
+ os: [ ubuntu-latest, macos-12, macos-latest ]
17
fail-fast: false
18
max-parallel: 64
19
name: Test on ${{ matrix.os }}
test/my_unit_test_lib.sh
@@ -50,7 +50,7 @@ die() {
50
51
assertArrayEquals() {
52
(($# == 2 || $# == 3)) || die "assertArrayEquals must 2 or 3 arguments!"
53
- local failMsg=""
+ local failMsg=
54
(($# == 3)) && {
55
failMsg=$1
56
shift
0 commit comments