Prove WeakPNT_character' using WeakPNT_character from EulerProducts #592
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
on: | |
pull_request: | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Build | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install elan | |
run: curl https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh -sSf | sh -s -- -y --default-toolchain $(cat lean-toolchain) | |
- name: Build project | |
run: make LAKEBIN='~/.elan/bin/lake' build | |
build_blueprint: | |
runs-on: ubuntu-latest | |
name: Build blueprint | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
cache: 'pip' # cache pip dependencies | |
- name: Update pip | |
run: | | |
pip install --upgrade pip | |
- name: Install blueprint apt dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y graphviz libgraphviz-dev pdf2svg dvisvgm | |
- name: Install blueprint dependencies | |
run: | | |
cd blueprint && pip install -r requirements.txt | |
- name: Build blueprint | |
run: | | |
make blueprint |