Skip to content

Commit

Permalink
Bring up to date with Laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmanders committed Jul 31, 2024
1 parent 81fc033 commit 14746a9
Show file tree
Hide file tree
Showing 22 changed files with 2,841 additions and 1,474 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: tests

on:
push:
branches:
- master
pull_request:

jobs:
test:
runs-on: ubuntu-latest

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

name: PHP ${{ matrix.php }}

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: sqlite, pdo_sqlite
tools: composer:v2
coverage: none

- name: Install dependencies
# TODO: remove --ignore-platform-reqs when we have stable v2 release
run: composer install --no-interaction --prefer-dist --optimize-autoloader --ignore-platform-reqs

- name: Execute tests
run: vendor/bin/pest
Loading

0 comments on commit 14746a9

Please sign in to comment.