Skip to content

Commit

Permalink
Merge pull request #47 from bdejacobet/github-action
Browse files Browse the repository at this point in the history
feat(CI): Travis replaced by GitHub Action
mremi authored Aug 4, 2021
2 parents cc2c360 + 66773ab commit 6d36cd4
Showing 6 changed files with 23 additions and 69 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Tests

on:
push:
pull_request:
schedule:
- cron: '0 1 * * *'

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
php: [ '7.2', '7.3', '7.4', '8.0' ]
steps:
- uses: actions/checkout@v2
- name: Setup PHP with tools
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer
- run: make app-install
- run: make ci
35 changes: 0 additions & 35 deletions .travis.yml

This file was deleted.

4 changes: 0 additions & 4 deletions .travis/after_success_ci.sh

This file was deleted.

8 changes: 0 additions & 8 deletions .travis/before_install_ci.sh

This file was deleted.

6 changes: 0 additions & 6 deletions .travis/check_relevant_ci.sh

This file was deleted.

16 changes: 0 additions & 16 deletions .travis/install_ci.sh

This file was deleted.

0 comments on commit 6d36cd4

Please sign in to comment.