Bump version (#155) #181
Workflow file for this run
This file contains hidden or 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: build | |
| on: [push] | |
| jobs: | |
| debug: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - run: make test_debug | |
| - run: ./ContainersTest | |
| debug_windows: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [windows-latest] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - run: make test_debug_no_malloc_fail | |
| - run: ./ContainersTest | |
| optimized: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - run: make test_optimized | |
| - run: ./ContainersTest | |
| optimized_windows: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [windows-latest] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - run: make test_optimized_no_malloc_fail | |
| - run: ./ContainersTest | |
| coverage: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - run: make test_coverage | |
| - run: ./ContainersTest | |
| - run: bash <(curl -s https://codecov.io/bash) | |
| valgrind: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - run: sudo apt install -y valgrind | |
| - run: make test_debug_no_malloc_fail | |
| - run: valgrind --leak-check=full --error-exitcode=1 ./ContainersTest |