We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1615546 commit 273f267Copy full SHA for 273f267
.github/workflows/ccpp-linux.yml
@@ -1,23 +1,21 @@
1
name: C/C++ linux
2
3
-on:
+on:
4
push:
5
branches:
6
- - master
+ - master
7
8
jobs:
9
build:
10
-
11
runs-on: ubuntu-latest
12
13
- steps:
14
- - uses: actions/checkout@v2
15
- - name: install
16
- run: sudo apt-get install -y bison flex zlib1g-dev cmake
17
- - name: git
18
- run: git submodule update --init --recursive
19
- - name: configure
20
- run: cd build;cmake ..
21
- - name: make
22
- run: cd build; make
23
+ steps:
+ - uses: actions/checkout@v3
+ - name: install
+ run: sudo apt-get install -y bison flex zlib1g-dev cmake
+ - name: git
+ run: git submodule update --init --recursive
+ - name: configure
+ run: cd build;cmake ..
+ - name: make
+ run: cd build; make
0 commit comments