Skip to content

Commit

Permalink
get github workflow running
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Mitterhauser committed Feb 29, 2024
1 parent 5495e5e commit 7c54f6c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,16 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Check PHP syntax of config/phinx.php
run: php -l Lib/
run: php -l src/ tests/

phpunit:
name: PHPUnit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: php-actions/composer@v6 # or alternative dependency management
- uses: php-actions/composer@v6
with:
php_version: 7.4
- uses: php-actions/phpunit@v3
with:
version: 4.8
Expand All @@ -55,7 +57,7 @@ jobs:
- uses: actions/checkout@v3
- uses: php-actions/composer@v6
with:
php_version: ${{ matrix.php_version }}
php_version: 7.4
#php_extensions: redis intl

- name: PHPStan Static Analysis
Expand Down

0 comments on commit 7c54f6c

Please sign in to comment.