Update/remove warnings #17
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: [main] | |
pull_request: | |
types: [opened, repoened, synchronize] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2.0.0 | |
- uses: cachix/install-nix-action@v27 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- name: Setup erlang | |
run: cd sequential/installing && nix develop | |
- name: Re-use nix flake to check erlang tests | |
run: cd sequential/installing && nix develop --command bash -c "cd ../../ && make test PROFILE=ci" |