Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jgrossi committed Jun 9, 2023
1 parent 8770f01 commit ef954d7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Expand Up @@ -9,22 +9,22 @@ jobs:
steps:
- uses: actions/checkout@v1

- name: Setup php80
- name: Setup php81
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: '8.1'

- name: Running tests php80
- name: Running tests php81
run: |
composer install --prefer-dist --quiet
php vendor/bin/phpunit
- name: Setup php81
- name: Setup php82
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
php-version: '8.2'

- name: Running tests php81
- name: Running tests php82
run: |
composer install --prefer-dist --quiet
php vendor/bin/phpunit

0 comments on commit ef954d7

Please sign in to comment.