Skip to content

Commit f639b1b

Browse files
authored
Switch to GitHub Actions-based CI (#3)
Switch to GitHub Actions-based CI
2 parents 44d9a90 + baa8998 commit f639b1b

File tree

2 files changed

+20
-7
lines changed

2 files changed

+20
-7
lines changed

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
11+
jobs:
12+
lint:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v1
17+
- name: Lint
18+
run: |
19+
php --version
20+
find . -name "*.php" -print0 | xargs -0 -n1 php -l

.travis.yml

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)