Skip to content

Commit

Permalink
Add simple CI
Browse files Browse the repository at this point in the history
Signed-off-by: Nigel Jones <jonesn@uk.ibm.com>
  • Loading branch information
planetf1 committed Sep 12, 2024
1 parent 4e0a063 commit a9f08d1
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
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)'
name: Simple build (${{ matrix.target.name }})
runs-on: ${{ matrix.target.runner }}
steps:
- name: checkout
uses: actions/checkout@v4
- name: build
run: |
make

0 comments on commit a9f08d1

Please sign in to comment.