Skip to content

Remove an unverified lemma found in virt_mem (#343) #124

Remove an unverified lemma found in virt_mem (#343)

Remove an unverified lemma found in virt_mem (#343) #124

Workflow file for this run

name: Deploy Rust docs to GitHub Pages
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install dependencies
run: |
sudo apt update -qq
sudo apt install -y build-essential unzip pkg-config libssl-dev llvm
- name: Run dv bootstrap
run: cargo dv bootstrap
- name: Run verification
run: make
- name: Build docs
run: make doc
- name: Upload artifact
if: github.event_name != 'pull_request'
uses: actions/upload-pages-artifact@v3
with:
path: doc
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
needs: build
if: github.event_name != 'pull_request'
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4