Remove redundant Correctness Verification section from factorial benchmark #35
Workflow file for this run
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
| name: Verify dev tooling and validate submissions | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| check: | |
| name: Verify dev tooling and validate submissions | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@v27 | |
| with: | |
| extra_nix_config: | | |
| accept-flake-config = true | |
| - name: Use Cachix (pull/push if token provided) | |
| uses: cachix/cachix-action@v14 | |
| with: | |
| name: uplc-cape | |
| authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} | |
| - name: Warm up Nix dev shell | |
| run: | | |
| # Ensure the dev shell is instantiated and dependencies are downloaded | |
| nix develop --accept-flake-config --command cape --help > /dev/null | |
| - name: Verify all submissions | |
| run: | | |
| nix develop --accept-flake-config --command cape submission verify --all | |
| - name: Run test suite | |
| run: | | |
| nix develop --accept-flake-config --command cape test |