Bump plutus Version to 1.62.0.0 #143
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: Build DevContainer | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| jobs: | |
| build-devcontainer: | |
| name: Build DevContainer | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4.1.1 | |
| - name: Build Project With Docker | |
| run: | | |
| # Note: the -i flag in "bash -ic" is necessary and causes bash to | |
| # "source ~/.bashrc" which correctly populates the env. | |
| docker run \ | |
| -v ./.:/workspaces/plinth-template \ | |
| -w /workspaces/plinth-template \ | |
| -i ghcr.io/input-output-hk/devx-devcontainer:x86_64-linux.ghc96-iog \ | |
| bash -ic "cabal update && cabal build all && echo ':q' | cabal repl lib:plinth-validators" |