Build thys in Isabelle Devel #12
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 thys in Isabelle Devel | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| if: github.event_name != 'pull_request' || !github.event.pull_request.draft | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Clone isabelle repo | |
| run: hg clone https://isabelle.sketis.net/repos/isabelle | |
| - name: Init isabelle | |
| run: ./isabelle/Admin/init | |
| - name: Build | |
| run: ./isabelle/bin/isabelle build -vD . |