Skip to content

Commit

Permalink
GHA: Add a build sanity check in CI
Browse files Browse the repository at this point in the history
Add a build check job in the sanity checks workflow.
  • Loading branch information
syncom authored and pldubouilh committed Aug 23, 2024
1 parent a2d67da commit ad0d08c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/sanity.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Sanity checks
on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on:
- ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
cargo install cbindgen
- name: Build
run: |
make build

0 comments on commit ad0d08c

Please sign in to comment.