chore(deps): update actions/cache digest to e12d46a #230
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: Laravel Test - MariaDB & PostgreSQL | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
laravel-mariadb: | |
name: Laravel with MariaDB ${{ matrix.mariadb-versions }} | |
uses: ./.github/workflows/laravel-test.yml | |
with: | |
db-type: mysql | |
db-version: ${{ matrix.mariadb-versions }} | |
strategy: | |
matrix: | |
mariadb-versions: ["10", "11"] | |
laravel-psql: | |
name: Laravel with PostgreSQL ${{ matrix.pgsql-versions }} | |
uses: ./.github/workflows/laravel-test.yml | |
with: | |
db-type: pgsql | |
db-version: ${{ matrix.pgsql-versions }} | |
strategy: | |
matrix: | |
pgsql-versions: ["14", "15", "16"] |