-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[dagster-pipes-java] add tests in CI
- Loading branch information
1 parent
292cc3e
commit 42791c2
Showing
2 changed files
with
27 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: dagster-pipes-java | ||
|
||
on: | ||
pull_request: | ||
types: [opened, synchronize, reopened, closed] | ||
paths: | ||
- "libraries/pipes/implementations/java/**" | ||
- ".github/workflows/libraries-pipes-java.yml" | ||
|
||
defaults: | ||
run: | ||
working-directory: ./libraries/pipes/implementations/java/dagster-pipes-java/ | ||
|
||
jobs: | ||
test: | ||
name: "test" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: DeterminateSystems/nix-installer-action@main | ||
- name: Run tests | ||
run: | | ||
nix develop --command \ | ||
uv run pytest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ mkShell { | |
jdk8 | ||
uv | ||
]; | ||
shellHook = '' | ||
exec zsh | ||
''; | ||
# shellHook = '' | ||
# exec zsh | ||
# ''; | ||
} |