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 15, 2021
1 parent 5afbc26 commit 963ddbb
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/test.yml
@@ -0,0 +1,17 @@
name: Test

on: [push]
env:
APP_KEY: "APP_KEY: ${{ secrets.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 963ddbb

Please sign in to comment.