Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
tadd committed Jul 15, 2024
1 parent 0f5cf38 commit f8e7b37
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/c-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: C/C++ CI

on:
pull_request:
workflow_dispatch:
push:
branches-ignore:
- '.**'
- 'wip'
- 'wip-**'
- '**.wip-**'


jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: install criterion
run: sudo apt install libcriterion-dev
- name: make
run: make
- name: test
run: make test

0 comments on commit f8e7b37

Please sign in to comment.