Skip to content

Commit

Permalink
chore: fix ci job
Browse files Browse the repository at this point in the history
  • Loading branch information
mesejo committed Feb 5, 2025
1 parent addee91 commit fbe592b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-test-snowflake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: ci-test-snowflake

on:
workflow_dispatch:
pull_request_target:
pull_request:
types:
- labeled

Expand All @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
target: ["x86_64"]
python-version: ["3.11"]
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- uses: extractions/setup-just@v2
Expand All @@ -40,14 +40,14 @@ jobs:
working-directory: ${{ github.workspace }}

- name: maturin develop
run: uv run maturin develop
run: uv run --no-project maturin develop
working-directory: ${{ github.workspace }}

- name: start services
run: docker compose up --build --wait

- name: pytest
run: uv run pytest --import-mode=importlib python/letsql/backends/snowflake -v --cov --cov-report=xml
run: uv run --no-project pytest --import-mode=importlib python/letsql/backends/snowflake -v --cov --cov-report=xml
working-directory: ${{ github.workspace }}
env:
SNOWFLAKE_PASSWORD: ${{ secrets.SNOWFLAKE_GH_USER_PASSWORD }}
Expand Down

0 comments on commit fbe592b

Please sign in to comment.