Skip to content

Commit

Permalink
Merge pull request #127 from mettle/feature/update-gh-actions
Browse files Browse the repository at this point in the history
Add matrix strategy to cover all supported php versions
  • Loading branch information
JonoB authored Apr 30, 2021
2 parents cbb3522 + ed78498 commit afa8692
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,18 @@ name: Laravel CI
jobs:
phpunit:
runs-on: ubuntu-latest
strategy:
matrix:
container: [
"kirschbaumdevelopment/laravel-test-runner:7.3",
"kirschbaumdevelopment/laravel-test-runner:7.4",
"kirschbaumdevelopment/laravel-test-runner:8.0"
]

container:
image: kirschbaumdevelopment/laravel-test-runner:7.3
image: ${{ matrix.container }}

name: ${{ matrix.container }}

services:
mysql:
Expand Down

0 comments on commit afa8692

Please sign in to comment.