We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6e3f42b + 50e0bcb commit bc34f66Copy full SHA for bc34f66
1 file changed
.github/workflows/c-cpp.yml
@@ -0,0 +1,30 @@
1
+name: C/C++ CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v4
16
17
+ - name: Create build directory
18
+ run: mkdir -p build
19
20
+ - name: Run CMake
21
+ working-directory: build
22
+ run: cmake .. -DSTATIC_QUEUE_TEST=ON
23
24
+ - name: Build the project
25
26
+ run: make
27
28
+ - name: Run tests
29
30
+ run: ./test_static_queue
0 commit comments