Skip to content

Draft: Add lab on new module system #373

Draft: Add lab on new module system

Draft: Add lab on new module system #373

Workflow file for this run

name: Cryptol Checks
on: [push, pull_request]
jobs:
ci-load:
runs-on: ubuntu-latest
container:
image: ghcr.io/weaversa/cryptol-course:2.13
options: --user root
steps:
- name: Checkout
uses: actions/checkout@v2
# Start cryptol-remote-api server
- run: start-cryptol-remote-api-read-only
# Load all files
- run: python3 .ci/ci_load.py
ci-check:
needs: ci-load
runs-on: ubuntu-latest
container:
image: ghcr.io/weaversa/cryptol-course:2.13
options: --user root
steps:
- name: Checkout
uses: actions/checkout@v2
- name: set pythonpath
run: echo "PYTHONPATH=${PYTHONPATH}:${PWD}/.ci" >> $GITHUB_ENV
# Start cryptol-remote-api server
- run: start-cryptol-remote-api-read-only
# Run checks
- run: for f in `find . -name "ci.py"`; do python3 $f; done
ci-prove:
needs: ci-load
runs-on: ubuntu-latest
container:
image: ghcr.io/weaversa/cryptol-course:2.13
options: --user root
steps:
- name: Checkout
uses: actions/checkout@v2
- name: set pythonpath
run: echo "PYTHONPATH=${PYTHONPATH}:${PWD}/.ci" >> $GITHUB_ENV
# Start cryptol-remote-api server
- run: start-cryptol-remote-api-read-only
# Run checks
- run: for f in `find . -name "ci_prove.py"`; do python3 $f; done