Skip to content

Commit

Permalink
Update GitHub Actions for Laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
laravel-shift committed Mar 1, 2024
1 parent 6245587 commit 26433c5
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
name: CI laravel-ovh
on: [push, pull_request]

on:
- push
- pull_request

jobs:
test:
runs-on: ubuntu-latest

strategy:
fail-fast: true
matrix:
php: [8.1]
illuminate: [10.*]
php: [8.1, '8.2']
illuminate: ['10.*']
dependency-version: [prefer-stable]

name: P${{ matrix.php }} - L${{ matrix.illuminate }} - ${{ matrix.dependency-version }}
Expand All @@ -19,6 +24,7 @@ jobs:
- name: Detect Composer Cache Directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"

- name: Setup Composer Cache
uses: actions/cache@v2
with:
Expand Down

0 comments on commit 26433c5

Please sign in to comment.