* Modernize tooling & fix CI - Remove old spago & psc-package files - Update dependencies - Move to github actions instead of travis CI - Use purescript 0.14.0 in nix-shell * Re-add all referenced dependencies to bower file * Build in a separate action step
25 lines
418 B
YAML
25 lines
418 B
YAML
name: Test
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Check out codebase
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Install nix
|
|
uses: cachix/install-nix-action@v12
|
|
with:
|
|
nix_path: nixpkgs=channel:nixos-20.09
|
|
|
|
- name: Build
|
|
run: nix-shell --run 'make build'
|
|
|
|
- name: Test
|
|
run: nix-shell --run 'make test'
|