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.
2 parents aa75835 + 025c999 commit 75349a2Copy full SHA for 75349a2
.github/workflows/c-cpp.yml
@@ -0,0 +1,25 @@
1
+name: C/C++ CI
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ${{ matrix.os }}
12
+ strategy:
13
+ matrix:
14
+ os: [ ubuntu-16.04, ubuntu-latest ]
15
+ php: [ '7.4', '8.0' ]
16
+ steps:
17
+ - uses: actions/checkout@v2
18
+ - name: Setup PHP
19
+ uses: shivammathur/setup-php@v2
20
+ with:
21
+ php-version: ${{ matrix.php }}
22
+ - name: make
23
+ run: make
24
+ - name: make install
25
+ run: sudo make install
0 commit comments