This repository has been archived by the owner on Jun 4, 2024. It is now read-only.
Update readme with lhs example #55
Workflow file for this run
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: "Test" | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install arkworks-bridge | |
uses: jaxxstorm/[email protected] | |
with: | |
repo: torsion-labs/arkworks-bridge | |
tag: v1.0.0-rc1 | |
- uses: cachix/install-nix-action@v24 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- uses: cachix/cachix-action@v13 | |
with: | |
name: martyall | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- run: nix build | |
- run: | | |
mkdir scripts | |
nix develop --command cabal run tests |