Skip to content

Commit 9a59cb1

Browse files
committed
dont start containers for sqlite
1 parent 4a57bcd commit 9a59cb1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/run-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,9 @@ jobs:
8787

8888
- name: Set up MySQL and PostgreSQL
8989
run: |
90-
MYSQL_PORT=3307 POSTGRES_PORT=5432 docker compose up ${{ matrix.db }} -d
90+
if [ "${{ matrix.db }}" != "sqlite" ]; then
91+
MYSQL_PORT=3307 POSTGRES_PORT=5432 docker compose up ${{ matrix.db }} -d
92+
fi
9193
9294
- name: Install dependencies
9395
run: |

0 commit comments

Comments
 (0)