aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml9
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index b5f01015..190fa9ba 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -29,6 +29,15 @@ jobs:
MARIADB_DATABASE: juick
MARIADB_ROOT_PASSWORD: secret
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-retries=3 --health-timeout=5s --health-start-period=15s
+ sqlserver:
+ image: mcr.microsoft.com/mssql/server:2022-latest
+ ports:
+ - 1433:1433
+ options: --health-cmd="/opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P \"$MSSQL_SA_PASSWORD\" -Q \"SELECT 1\"" --health-interval=10s --health-retries=3 --health-timeout=5s --health-start-period=15s
+ env:
+ ACCEPT_EULA: Y
+ MSSQL_SA_PASSWORD: Passw00rd!
+ MSSQL_PID: Express
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17