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 43061a3 commit 8382c38Copy full SHA for 8382c38
.github/workflows/BuildAndTest
@@ -0,0 +1,28 @@
1
+name: tests
2
+
3
+on: [push]
4
5
+env:
6
+ BUILD_TYPE: Release
7
8
+jobs:
9
+ build:
10
+ runs-on: linux-latest
11
12
+ steps:
13
+ - uses: actions/checkout@v3
14
15
+ - name: install dependencies
16
+ run: apt-get update;
17
+ apt-get install boost;
18
+ apt-get install googletest
19
20
21
+ - name: Configure CMake
22
+ run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
23
24
+ - name: Build
25
+ run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
26
27
+ - name: Test
28
+ run: ${{github.workspace}}/build/tests/boost-tcp-server-client-tests
0 commit comments