Skip to content

Commit

Permalink
Add GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuckal777 committed Nov 19, 2024
1 parent e68b8b8 commit ae4e6ce
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Checks
on: [push]
env:
CC: clang
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
- name: Init cmake
run: cmake -S . -B build
- name: Check
run: cmake --build build --target check
fuzz:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Init cmake
run: cmake -S . -B build
- name: Fuzz
run: cmake --build build --target fuzz

0 comments on commit ae4e6ce

Please sign in to comment.