🚨 ask orchestra nicely to run laravels migrations to give us the user… #19
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
laravel: [10, 11] | |
php: [8.1, 8.2, 8.3] | |
exclude: | |
- php: 8.1 | |
laravel: 11 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: test against Laravel ${{ matrix.laravel }} on PHP ${{ matrix.php }} | |
run: docker build . --build-arg PHP_VERSION=${{ matrix.php }} --build-arg LARAVEL=${{ matrix.laravel }} |