Skip to content

Commit

Permalink
Unit Tests Skip Nightly Add 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
oleibman committed Sep 3, 2024
1 parent 00cd98f commit 59ee38f
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,7 @@ jobs:
- '8.0'
- '8.1'
- '8.2'

include:
- php-version: 'nightly'
experimental: true
- '8.3'

name: PHP ${{ matrix.php-version }}

Expand Down Expand Up @@ -43,7 +40,7 @@ jobs:

- name: Delete composer lock file
id: composer-lock
if: ${{ matrix.php-version == '8.1' || matrix.php-version == '8.2' || matrix.php-version == 'nightly' }}
if: ${{ matrix.php-version == '8.1' || matrix.php-version == '8.2' || matrix.php-version == '8.3' }}
run: |
rm composer.lock
echo "flags=--ignore-platform-reqs" >> $GITHUB_OUTPUT
Expand All @@ -66,7 +63,7 @@ jobs:
- name: "Run PHPUnit tests 2 (Experimental: ${{ matrix.experimental }})"
env:
FAILURE_ACTION: "${{ matrix.experimental == true }}"
if: ${{ matrix.php-version == '8.1' || matrix.php-version == '8.2' || matrix.php-version == 'nightly' }}
if: ${{ matrix.php-version == '8.1' || matrix.php-version == '8.2' || matrix.php-version == '8.3' }}
run: vendor/bin/phpunit --verbose || $FAILURE_ACTION

php-cs-fixer:
Expand Down

0 comments on commit 59ee38f

Please sign in to comment.