Fix broken README links. #540
Workflow file for this run
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: Cryptol typecheck | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/galoisinc/cryptol:nightly | |
options: --user root | |
steps: | |
- name: Installing dependencies.. | |
run: | | |
apt update | |
apt install -y git | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Cryptol Version | |
run: cryptol --version | |
- name: Check Cryptol Files | |
run: bash scripts/load_all_cry_files.sh |