We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3e0994 commit 7a94f4bCopy full SHA for 7a94f4b
.github/workflows/LinuxBuildAndTest.yml
@@ -7,15 +7,15 @@ env:
7
8
jobs:
9
build:
10
- runs-on: linux-latest
+ runs-on: ubuntu-latest
11
12
steps:
13
- uses: actions/checkout@v3
14
15
- name: install dependencies
16
run: sudo apt-get update;
17
- sudo apt-get install boost;
18
- sudo apt-get install googletest
+ sudo apt-get install libboost-dev;
+ sudo apt-get install libgtest-dev
19
20
- name: Configure CMake
21
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
0 commit comments