refactor: remove debug eval
command
#11
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
--- | |
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 prqlc:test |