Skip to content

Commit

Permalink
fix yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
ronenlu committed Jun 6, 2024
1 parent 31d83b1 commit 4c419d4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:
key: venv-${{ hashFiles('poetry.lock') }}
- name: Install the project dependencies
run: poetry install
- name: Install specific test mysql dependencies
run: poetry add mysqlclient
- name: Run lint
run: poetry run ruff --output-format=github .
- name: Run unit tests
Expand All @@ -39,7 +41,7 @@ jobs:
- dialect: postgresql
deps: [psycopg2]
- dialect: sqlite
deps: []
deps: ''
- dialect: mssql
deps: [mssql-django, pyodbc]
runs-on: ubuntu-latest
Expand All @@ -63,7 +65,7 @@ jobs:
- name: Install the project dependencies
run: poetry install
- name: Install specific dialect dependencies
if: ${{ matrix.deps != [] }}
if: ${{ matrix.deps != '' }}
run: poetry add ${{ join(matrix.deps, ' ') }}
- name: Install atlas
uses: ariga/setup-atlas@master
Expand Down

0 comments on commit 4c419d4

Please sign in to comment.