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