Skip to content
This repository was archived by the owner on Nov 6, 2024. It is now read-only.

Commit a9f08d1

Browse files
committed
Add simple CI
Signed-off-by: Nigel Jones <[email protected]>
1 parent 4e0a063 commit a9f08d1

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/ci.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: CI
2+
on:
3+
push:
4+
branches: ["*"]
5+
pull_request:
6+
branches: ["main"]
7+
permissions:
8+
contents: read
9+
jobs:
10+
build:
11+
strategy:
12+
fail-fast: false
13+
matrix:
14+
target:
15+
- runner: ubuntu-latest
16+
name: 'ubuntu-latest x86-64'
17+
- runner: macos-latest
18+
name: 'MacOS (arm64)'
19+
- runner: pqcp-arm64
20+
name: 'ubuntu-latest (arm64)'
21+
name: Simple build (${{ matrix.target.name }})
22+
runs-on: ${{ matrix.target.runner }}
23+
steps:
24+
- name: checkout
25+
uses: actions/checkout@v4
26+
- name: build
27+
run: |
28+
make
29+

0 commit comments

Comments
 (0)