Skip to content

Commit

Permalink
wip it
Browse files Browse the repository at this point in the history
  • Loading branch information
stevethomas committed Mar 11, 2024
1 parent 5336bd3 commit d014002
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,22 @@ on: [push]

jobs:
test:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

strategy:
fail-fast: true
matrix:
php: [ 8.1, 8.2, 8.3 ]

name: PHP ${{ matrix.php }}

steps:
- uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
php-version: ${{ matrix.php }}
extensions: zip, sqlite3
coverage: xdebug

Expand Down

0 comments on commit d014002

Please sign in to comment.