Nightly Test Suite #88
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: Nightly Test Suite | |
on: | |
schedule: | |
- cron: 0 0 * * * # daily at midnight | |
workflow_dispatch: # or manually dispatch the job | |
jobs: | |
nightly-test-suite: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Quick Install Nix | |
uses: cachix/install-nix-action@v23 | |
with: | |
extra_nix_config: | | |
experimental-features = nix-command flakes | |
accept-flake-config = true | |
- name: plutus-core-nightly | |
if: always() | |
run: | | |
pushd plutus-core | |
nix run --no-warn-dirty --accept-flake-config .#plutus-core-test -- --hedgehog-tests 10000 | |
popd | |
- name: plutus-ir-nightly | |
if: always() | |
run: | | |
pushd plutus-core | |
nix run --no-warn-dirty --accept-flake-config .#plutus-ir-test -- --hedgehog-tests 10000 | |
popd |