Skip to content

Commit

Permalink
Create c.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
milgra authored Nov 6, 2023
1 parent 0d4830a commit 8fba36f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/c.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: C CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: configure
run: meson setup build --buildtype=debug -Db_sanitize=address -Db_lundef=false
- name: make
run: ninja -C build
- name: make check
run: cd build && meson test

0 comments on commit 8fba36f

Please sign in to comment.