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 16b734a commit 8cedd21Copy full SHA for 8cedd21
.github/workflows/ci.yaml
@@ -0,0 +1,12 @@
1
+name: CI
2
+run-name: ${{ github.actor }} start pipeline
3
+on: [push]
4
+jobs:
5
+ build:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - name: Check out repository code
9
+ uses: actions/checkout@v3
10
+ - run: sudo apt-get update
11
+ - run: sudo apt-get install g++ make cmake
12
+ - run: mkdir -p build && cd build && cmake .. && make
0 commit comments