Move caseList
and caseData
to the end of the flat encoding (#7128)
#27
This file contains hidden or 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 to master, this workflow builds and publishes the project's coverage | |
# report to: https://plutus.cardano.intersectmbo.org/dev/coverage | |
name: "📊 Code Coverage Report" | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: [self-hosted, plutus-ci] | |
permissions: | |
contents: write | |
environment: | |
name: github-pages | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
- name: Build Report | |
run: | | |
nix build --no-warn-dirty --accept-flake-config .#project-coverage-report | |
- name: Deploy Report | |
uses: JamesIves/[email protected] | |
with: | |
folder: result/share/hpc/vanilla/html | |
target-folder: dev/coverage | |
single-commit: true |