Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5
- run: make test_debug
- run: ./ContainersTest
debug_windows:
Expand All @@ -16,7 +16,7 @@ jobs:
matrix:
os: [windows-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5
- run: make test_debug_no_malloc_fail
- run: ./ContainersTest
optimized:
Expand All @@ -25,7 +25,7 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5
- run: make test_optimized
- run: ./ContainersTest
optimized_windows:
Expand All @@ -34,20 +34,20 @@ jobs:
matrix:
os: [windows-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5
- run: make test_optimized_no_malloc_fail
- run: ./ContainersTest
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- 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@v3
- 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