Files
Toy/.github/workflows/c-cpp.yml

22 lines
385 B
YAML

name: Comprehensive Tests
on:
push:
branches: [ "main", "dev" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install valgrind
run: sudo apt install valgrind
- name: make test (valgrind)
run: make test
- name: make test (sanitized)
run: make test-sanitized