Skip to content

Commit

Permalink
Merge pull request #48 from wandersonwhcr/issue-45
Browse files Browse the repository at this point in the history
Use GitHub Actions
  • Loading branch information
wandersonwhcr authored Mar 18, 2021
2 parents 7e8394d + 1a3f2c5 commit f0ca058
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 14 deletions.
1 change: 0 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/.gitattributes export-ignore
/.gitignore export-ignore
/.travis.yml export-ignore
/phpcs.xml.dist export-ignore
/phpmd.xml export-ignore
/phpunit.xml.dist export-ignore
Expand Down
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Test

on:
pull_request:
branches: ["master"]

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install
uses: php-actions/composer@v5
with:
php_version: 7.4
- name: Test
uses: php-actions/composer@v5
with:
php_version: 7.4
command: test
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

0 comments on commit f0ca058

Please sign in to comment.