-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
37a5c8d
commit b970723
Showing
2 changed files
with
30 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Unit tests Clang Linux | ||
|
||
on: [push] | ||
|
||
jobs: | ||
unit-tests: | ||
name: Build and run | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Set up Clang | ||
uses: egor-tensin/setup-clang@v1 | ||
with: | ||
version: 19 | ||
platform: x64 | ||
- name: Checkout the project | ||
uses: actions/checkout@v2 | ||
- name: CMake | ||
run: | | ||
cd ./build | ||
CXX=/usr/bin/g++-13 cmake -G"Unix Makefiles" ./.. -DCMAKE_BUILD_TYPE=Release | ||
- name: Make | ||
run: | | ||
cd ./build | ||
make | ||
- name: Execute unit tests | ||
run: | | ||
cd ./build | ||
./tests/unit_tests/UnitTests --gtest_also_run_disabled_tests |
2 changes: 1 addition & 1 deletion
2
.github/workflows/unit_tests_linux.yml → .github/workflows/unit_tests_gcc_linux.yml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Unit tests Linux | ||
name: Unit tests GCC Linux | ||
|
||
on: [push] | ||
|
||
|