Evaluation workflow #12
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: "Evaluate mainnet scripts" | |
# on: | |
# schedule: | |
# - cron: "0 0 * * 5" # Run every Friday at midnight | |
on: | |
pull_request: | |
jobs: | |
build: | |
name: Build | |
runs-on: [plutus-script-evaluation-ci, self-hosted] | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout this Repo | |
uses: actions/checkout@main | |
with: | |
path: temp | |
- name: Add plutus SRP to the cabal.project | |
id: update_cabal_project | |
run: add_srp.sh | |
- name: Evaluate | |
run: | | |
nix develop --no-warn-dirty --accept-flake-config \ | |
--command bash -c 'cabal clean && cabal update && evaluate' |