Bumped license date #477
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Comprehensive Tests | |
on: | |
push: | |
branches: [ "main", "dev" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
test-valgrind: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- 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@v4 | |
- name: make test (sanitized) | |
run: make test-sanitized | |
test-mingw32: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: make test (mingw32) | |
run: make test |