We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb1c99d commit 5ca9f1aCopy full SHA for 5ca9f1a
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,29 @@
1
+name: Build C++
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - '**'
7
8
+jobs:
9
+ install:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - uses: actions/checkout@v3
14
15
+ - name: Install dependencies
16
+ run: |
17
+ sudo apt-get update
18
+ sudo apt-get install -y build-essential g++ cmake
19
20
+ build:
21
22
+ needs: install
23
24
25
26
27
+ - name: Compile project
28
+ run: make
29
0 commit comments