There was an error while loading. Please reload this page.
1 parent 8654bc9 commit 6989513Copy full SHA for 6989513
1 file changed
.github/workflows/c.yml
@@ -1,16 +1,22 @@
1
name: Ubuntu
2
3
-on: [push]
+'on': [push]
4
+
5
+concurrency:
6
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
7
+ cancel-in-progress: true
8
9
+permissions: {}
10
11
jobs:
12
build:
-
13
+ name: 'build'
14
runs-on: ubuntu-latest
15
steps:
- - uses: actions/checkout@v1
- - name: install libcurl
- run: sudo apt-get install libcurl4-openssl-dev
- - name: make
- run: make
16
+ - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
17
+ with:
18
+ persist-credentials: false
19
+ - name: install libcurl
20
+ run: sudo apt-get install libcurl4-openssl-dev
21
+ - name: make
22
+ run: make
0 commit comments