Skip to content

Commit

Permalink
Update run-tests.yml
Browse files Browse the repository at this point in the history
- Removed MacOS tests.
- Improved Linux tests execution configuration.
  • Loading branch information
idapena committed Feb 16, 2024
1 parent d1186ea commit 9bf3ab1
Showing 1 changed file with 5 additions and 20 deletions.
25 changes: 5 additions & 20 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,14 @@ jobs:
uses: actions/checkout@v2

- name: Set up CMake
uses: cmake/setup-cmake@v1
run: sudo apt-get install -y cmake

- name: Build and test
run: |
cmake .
cmake --build .
mkdir build
cd build
cmake ..
cmake --build . --target tests
ctest --output-on-failure
test-windows:
Expand All @@ -41,21 +43,4 @@ jobs:
run: |
cmake .
cmake --build . --config Release
ctest --output-on-failure
test-macos:
name: Test on macOS
runs-on: macos-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up CMake
uses: cmake/setup-cmake@v1

- name: Build and test
run: |
cmake .
cmake --build .
ctest --output-on-failure

0 comments on commit 9bf3ab1

Please sign in to comment.