Skip to content

Commit 75349a2

Browse files
committed
Merge remote-tracking branch 'km_origin/master' into v2
2 parents aa75835 + 025c999 commit 75349a2

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/c-cpp.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: C/C++ CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
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

Comments
 (0)