-
Notifications
You must be signed in to change notification settings - Fork 218
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ee6b2ce
commit 7ff86a1
Showing
2 changed files
with
31 additions
and
0 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,23 @@ | ||
--- | ||
name: Test feat-types | ||
on: | ||
push: | ||
branches: [feat-types] | ||
pull_request: | ||
branches: [feat-types] | ||
jobs: | ||
test-job: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# checkout and env setup | ||
- uses: actions/checkout@v3 | ||
- uses: DeterminateSystems/nix-installer-action@main | ||
- uses: DeterminateSystems/magic-nix-cache-action@main | ||
- name: Build the nix shell | ||
run: nix develop --command task --version | ||
- uses: Swatinem/rust-cache@v2 | ||
|
||
# run tests | ||
- name: Test prqlc | ||
run: nix develop --command task test | ||
working-directory: prqlc |
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