Skip to content

Commit

Permalink
Merge remote-tracking branch 'km_origin/master' into v2
Browse files Browse the repository at this point in the history
  • Loading branch information
kirmorozov committed Jan 14, 2021
2 parents aa75835 + 025c999 commit 75349a2
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: C/C++ CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-16.04, ubuntu-latest ]
php: [ '7.4', '8.0' ]
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: make
run: make
- name: make install
run: sudo make install

0 comments on commit 75349a2

Please sign in to comment.