Skip to content

WIP

WIP #118

Workflow file for this run

# Quickstart for GitHub Actions
# https://docs.github.com/en/actions/quickstart
name: CI
on: [ push, pull_request, workflow_dispatch ]
jobs:
test:
runs-on: ${{ fromJSON(matrix.os_deps).os }}
timeout-minutes: 5
strategy:
matrix:
os_deps:
- |
{"os": "ubuntu-latest"}
- |
{"os": "macos-11"}
- |
{"os": "macos-latest"}
fail-fast: false
max-parallel: 64
name: Test on ${{ (matrix.os_deps }}

Check failure on line 23 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yaml (Line: 23, Col: 11): Unexpected end of expression: 'os_deps'. Located at position 9 within expression: (matrix.os_deps
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