mirror of
https://github.com/codeplea/genann.git
synced 2026-09-17 06:23:43 +00:00
Add GitHub Actions CI
This commit is contained in:
13
.github/workflows/ci.yml
vendored
Normal file
13
.github/workflows/ci.yml
vendored
Normal 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"
|
||||
Reference in New Issue
Block a user