Update github actions checkout version (#154)

This commit is contained in:
Bailey Thompson
2025-11-16 12:04:41 -08:00
committed by GitHub
parent 5f222507b0
commit d5bca5ea14

View File

@@ -7,7 +7,7 @@ jobs:
matrix: matrix:
os: [ubuntu-latest, macos-latest] os: [ubuntu-latest, macos-latest]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v5
- run: make test_debug - run: make test_debug
- run: ./ContainersTest - run: ./ContainersTest
debug_windows: debug_windows:
@@ -16,7 +16,7 @@ jobs:
matrix: matrix:
os: [windows-latest] os: [windows-latest]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v5
- run: make test_debug_no_malloc_fail - run: make test_debug_no_malloc_fail
- run: ./ContainersTest - run: ./ContainersTest
optimized: optimized:
@@ -25,7 +25,7 @@ jobs:
matrix: matrix:
os: [ubuntu-latest, macos-latest] os: [ubuntu-latest, macos-latest]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v5
- run: make test_optimized - run: make test_optimized
- run: ./ContainersTest - run: ./ContainersTest
optimized_windows: optimized_windows:
@@ -34,20 +34,20 @@ jobs:
matrix: matrix:
os: [windows-latest] os: [windows-latest]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v5
- run: make test_optimized_no_malloc_fail - run: make test_optimized_no_malloc_fail
- run: ./ContainersTest - run: ./ContainersTest
coverage: coverage:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v5
- run: make test_coverage - run: make test_coverage
- run: ./ContainersTest - run: ./ContainersTest
- run: bash <(curl -s https://codecov.io/bash) - run: bash <(curl -s https://codecov.io/bash)
valgrind: valgrind:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v5
- run: sudo apt install -y valgrind - run: sudo apt install -y valgrind
- run: make test_debug_no_malloc_fail - run: make test_debug_no_malloc_fail
- run: valgrind --leak-check=full --error-exitcode=1 ./ContainersTest - run: valgrind --leak-check=full --error-exitcode=1 ./ContainersTest