Skip to content

Add simple CI

Add simple CI #1

Workflow file for this run

name: CI
on:
push:
branches: ["*"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
build:
strategy:
fail-fast: false
matrix:
target:
- runner: ubuntu-latest
name: 'ubuntu-latest x86-64'
- runner: macos-latest
name: 'MacOS (arm64)'
- runner: pqcp-arm64
name: 'ubuntu-latest (arm64)

Check failure on line 20 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 20
name: Simple build (${{ matrix.target.name }})
runs-on: ${{ matrix.target.runner }}
steps:
- name: checkout
uses: actions/checkout@v4
- name: build
run: |
make