build(CI): fix shellcheck
failure
#92
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Quickstart for GitHub Actions | |
# https://docs.github.com/en/actions/quickstart | |
name: CI | |
on: [ push, pull_request, workflow_dispatch ] | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 5 | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, macos-11, macos-latest ] | |
fail-fast: false | |
max-parallel: 64 | |
name: Test on ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- run: brew install coreutils gnu-sed | |
# https://docs.github.com/en/actions/learn-github-actions/variables#detecting-the-operating-system | |
# https://docs.github.com/en/actions/learn-github-actions/expressions | |
if: runner.os == 'macOS' | |
- run: test-cases/integration-test.sh |