Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
lapaliv committed May 21, 2024
1 parent 98a04e8 commit 44d772c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: PHPUnit & PHPStan
name: PHPUnit

on: [push]

Expand All @@ -9,8 +9,17 @@ jobs:
phpunit:
runs-on: ubuntu-latest

strategy:
matrix:
include:
- php: '8.0'
- php: '8.1'
- php: '8.2'
steps:
- uses: actions/checkout@v3
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 2

- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
Expand All @@ -25,7 +34,9 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.0
coverage: "none"
php-version: "${{ matrix.php }}"
tools: flex

- name: Install dependencies
run: composer install --prefer-dist --no-progress
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/psalm.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: PHPUnit & PHPStan
name: Psalm

on: [push]

Expand Down

0 comments on commit 44d772c

Please sign in to comment.