Add GitHub Actions CI

This commit is contained in:
Lewis Van Winkle
2026-08-05 01:29:19 -05:00
parent a62aaa48bc
commit f94546b5d2

13
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,13 @@
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: make
sanitizer:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: make CFLAGS="-Wall -Wshadow -O2 -g -fsanitize=address,undefined" LDFLAGS="-fsanitize=address,undefined"