Skip to content

Commit 3790565

Browse files
authored
Merge pull request #5 from M6Web/feat/enable-ci
feat(ci): enable ci with github actions
2 parents f8e3af2 + 9c898b0 commit 3790565

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)