Skip to content
Merged
Show file tree
Hide file tree
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
14 changes: 7 additions & 7 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Run tests
run: |
cd build
./test/run_tests "~[quality]"
./test/run_tests

build-gcc10:
runs-on: ubuntu-latest
Expand All @@ -54,7 +54,7 @@ jobs:
- name: Run tests
run: |
cd build
./test/run_tests "~[quality]"
./test/run_tests

build-gcc10-cpp20:
runs-on: ubuntu-latest
Expand All @@ -77,7 +77,7 @@ jobs:
- name: Run tests
run: |
cd build
./test/run_tests "~[quality]"
./test/run_tests

build-gcc12:
runs-on: ubuntu-latest
Expand All @@ -100,7 +100,7 @@ jobs:
- name: Run tests
run: |
cd build
./test/run_tests "~[quality]"
./test/run_tests

build-clang11:
runs-on: ubuntu-22.04
Expand All @@ -123,7 +123,7 @@ jobs:
- name: Run tests
run: |
cd build
./test/run_tests "~[quality]"
./test/run_tests

build-clang13:
runs-on: ubuntu-22.04
Expand All @@ -146,7 +146,7 @@ jobs:
- name: Run tests
run: |
cd build
./test/run_tests "~[quality]"
./test/run_tests

build-clang13-asan:
runs-on: ubuntu-22.04
Expand All @@ -169,7 +169,7 @@ jobs:
- name: Run tests with ASAN
run: |
cd build
./test/run_tests "~[quality]"
./test/run_tests

compile-gcc9:
runs-on: ubuntu-latest
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Run tests
run: |
cd build
./test/run_tests "~[quality]"
./test/run_tests
build-clang14:
name: Clang 14
runs-on: macOS-latest
Expand All @@ -44,7 +44,7 @@ jobs:
- name: Run tests
run: |
cd build
./test/run_tests "~[quality]"
./test/run_tests
build-clang15:
name: Clang 15
runs-on: macOS-latest
Expand All @@ -62,4 +62,4 @@ jobs:
- name: Run tests
run: |
cd build
./test/run_tests "~[quality]"
./test/run_tests
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ jobs:
- name: Run tests
run: |
cd build
.\test\Debug\run_tests "~[quality]"
.\test\Debug\run_tests
Loading