Skip to content

Commit 9c898b0

Browse files
committed
feat(ci): enable ci with github actions
1 parent f8e3af2 commit 9c898b0

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Continuous Integration
2+
on: [pull_request]
3+
4+
jobs:
5+
ci:
6+
name: Tests & Quality
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@master
10+
- uses: shivammathur/setup-php@v2
11+
with:
12+
php-version: 7.4
13+
- run: make install
14+
- run: make ci

0 commit comments

Comments
 (0)