We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a57bcd commit 9a59cb1Copy full SHA for 9a59cb1
.github/workflows/run-tests.yml
@@ -87,7 +87,9 @@ jobs:
87
88
- name: Set up MySQL and PostgreSQL
89
run: |
90
- MYSQL_PORT=3307 POSTGRES_PORT=5432 docker compose up ${{ matrix.db }} -d
+ if [ "${{ matrix.db }}" != "sqlite" ]; then
91
+ MYSQL_PORT=3307 POSTGRES_PORT=5432 docker compose up ${{ matrix.db }} -d
92
+ fi
93
94
- name: Install dependencies
95
0 commit comments