Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Commit

Permalink
setup integration in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
marijncv committed Dec 9, 2024
1 parent a289cf9 commit b8873ce
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,24 @@ jobs:

- name: "Doctests"
run: cargo test --doc

integration:
name: "integration"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: "Install uv"
uses: astral-sh/setup-uv@v4

- name: "Install Python"
working-directory: example-dagster-pipes-rust-project
run: uv python install

- name: "Lint"
working-directory: example-dagster-pipes-rust-project
run: uv run make ruff

- name: "Tests"
working-directory: example-dagster-pipes-rust-project
run: uv run pytest example_dagster_pipes_rust_project_tests

0 comments on commit b8873ce

Please sign in to comment.