Skip to content

Commit

Permalink
Add services to Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
xhochy committed Aug 27, 2024
1 parent cae3a44 commit 4412981
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,35 @@ jobs:
fail-fast: false
matrix:
environment: ["py310-pa13"]
services:
postgres:
image: postgres:11
options:
hostname: postgres
ports:
- 5432:5432
env:
POSTGRES_PASSWORD: password
POSTGRES_USER: postgres
POSTGRES_DB: test_db
mysql:
# test do not run with a newer mysql at the moment
image: mysql:5.6
command: --default-authentication-plugin=mysql_native_password
env:
MYSQL_ROOT_PASSWORD: StrongPassword1
MYSQL_USER: mysqluser
MYSQL_PASSWORD: password
MYSQL_DATABASE: test_db
ports:
- 3306:3306
mssql:
image: mcr.microsoft.com/mssql/server:2017-latest
env:
ACCEPT_EULA: Y
SA_PASSWORD: StrongPassword1
ports:
- 1433:1433
steps:
- name: Checkout branch
uses: actions/checkout@v4
Expand Down

0 comments on commit 4412981

Please sign in to comment.