Skip to content

Commit

Permalink
Merge pull request #6 from JunNishimura/feature/implement_adapter
Browse files Browse the repository at this point in the history
implement adatper
  • Loading branch information
JunNishimura authored Mar 31, 2024
2 parents 037d3ab + 0db9c1e commit ccfec3e
Show file tree
Hide file tree
Showing 11 changed files with 1,953 additions and 6 deletions.
34 changes: 28 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,34 @@ on:
jobs:
test:
name: test
strategy:
fail-fast: false
max-parallel: 3
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
services:
mysql:
image: mysql
env:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: test
ports:
- 3306:3306
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
POSTGRES_DB: test
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
mssql:
image: mcr.microsoft.com/mssql/server:2022-latest
env:
MSSQL_SA_PASSWORD: "Password123"
ACCEPT_EULA: "Y"
ports:
- 1433:1433
steps:
- name: checkout
uses: actions/checkout@v2
Expand Down
Loading

0 comments on commit ccfec3e

Please sign in to comment.