Bump pip from 21.2.4 to 23.3 (#14) #407
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
name: "build, test" | |
on: | |
pull_request: | |
push: | |
defaults: | |
run: | |
working-directory: ./app | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: cachix/install-nix-action@v13 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- run: nix-shell --run 'cabal build' | |
- run: nix-shell --run 'cabal test' |