Skip to content

Commit

Permalink
Add github action for running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
guergana committed Jul 14, 2021
1 parent 5afbc26 commit e4d7902
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Test

on: [push]
env:
APP_KEY: "${TESTING_KEY}"

jobs:
feature-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
uses: php-actions/composer@v6
- name: phpunit
uses: php-actions/phpunit@v3
with:
php_version: 7.3

0 comments on commit e4d7902

Please sign in to comment.