From f94546b5d2dcbf242aa9ad2a82230e15ed91c79d Mon Sep 17 00:00:00 2001 From: Lewis Van Winkle Date: Wed, 5 Aug 2026 01:29:19 -0500 Subject: [PATCH] Add GitHub Actions CI --- .github/workflows/ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..44b4773 --- /dev/null +++ b/.github/workflows/ci.yml @@ -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"