Skip to content

Commit

Permalink
fixing ci
Browse files Browse the repository at this point in the history
  • Loading branch information
devajmeireles committed Sep 16, 2024
1 parent e314467 commit ff2628c
Showing 1 changed file with 7 additions and 15 deletions.
22 changes: 7 additions & 15 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,8 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
php: [8.1, 8.2, 8.3]
php: [8.2, 8.3]
laravel: ['10.*', '11.*']
exclude:
- laravel: 11.*
php: 8.1

name: OS:${{ matrix.os }} / PHP:${{ matrix.php }} / Laravel:${{ matrix.laravel }}

Expand All @@ -36,8 +33,6 @@ jobs:

- run: npm install

- run: npm run lint

- run: npm run build

- name: Setup PHP
Expand All @@ -63,25 +58,22 @@ jobs:
- name: Setup Google Chrome
run: vendor/bin/dusk-updater detect --auto-update

- name: Pint
- name: Running Pint
run: ./vendor/bin/pint --test

- name: Type Coverage
- name: Running Type Coverage
run: ./vendor/bin/pest --type-coverage --min=100

- name: Rector
- name: Running Rector
run: ./vendor/bin/rector process --dry-run --config=rector.php

- name: PhpStan
- name: Running PhpStan
run: ./vendor/bin/phpstan --configuration="phpstan.neon"

- name: Clear Orchestra Testbench Cache
run: ./vendor/bin/testbench view:clear

- name: Structure Tests
- name: Running Structure Tests
run: ./vendor/bin/pest --ci --filter Structure

- name: Browser Tests
- name: Running Browser Tests
run: ./vendor/bin/pest --ci --filter Browser --order-by random --stop-on-failure
env:
CI: true

0 comments on commit ff2628c

Please sign in to comment.