Skip to content

Commit

Permalink
+github test action
Browse files Browse the repository at this point in the history
  • Loading branch information
rudiedirkx committed Jan 12, 2025
1 parent 453a885 commit 7a8e55c
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Tests

on:
- push

jobs:
phpstan:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
actions:
- name: phpunit
run: ./vendor/bin/phpunit --no-progress --display-deprecations --display-phpunit-deprecations
# - name: phpstan
# run: ./vendor/bin/phpstan analyze --no-progress
name: ${{ matrix.actions.name }}
steps:
- uses: shivammathur/setup-php@v2
with:
php-version: "8.3"
- uses: actions/checkout@v4
- uses: ramsey/composer-install@v3
- run: ${{ matrix.actions.run }}

0 comments on commit 7a8e55c

Please sign in to comment.