Skip to content

Commit

Permalink
Update CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
paragonie-security committed Apr 19, 2024
1 parent dc82cf9 commit c011e3c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
phpunit-versions: ['7.5.20']
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -30,7 +30,7 @@ jobs:
run: composer self-update --1; composer install

- name: PHPUnit tests
uses: php-actions/phpunit@v2
run: vendor/bin/phpunit
with:
memory_limit: 256M

Expand All @@ -44,7 +44,7 @@ jobs:
phpunit-versions: ['latest']
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -61,7 +61,7 @@ jobs:
run: composer install

- name: PHPUnit tests
uses: php-actions/phpunit@v2
run: vendor/bin/phpunit
timeout-minutes: 30
with:
memory_limit: 256M
Expand All @@ -72,11 +72,11 @@ jobs:
strategy:
matrix:
operating-system: ['ubuntu-latest']
php-versions: ['7.4', '8.0']
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
phpunit-versions: ['latest']
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -93,7 +93,7 @@ jobs:
run: composer install

- name: PHPUnit tests
uses: php-actions/phpunit@v2
run: vendor/bin/phpunit
timeout-minutes: 30
with:
memory_limit: 256M
Expand Down

0 comments on commit c011e3c

Please sign in to comment.