mirror of
https://github.com/bkthomps/Containers.git
synced 2026-05-12 20:35:46 +00:00
Update github actions checkout version (#154)
This commit is contained in:
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user