Skip to content

Update jackpot.md

Update jackpot.md #722

Workflow file for this run

name: Build mkdocs
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
name: Build docs
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install mkdocs-glightbox
pip install $(mkdocs get-deps)
- name: mkdocs build
run: mkdocs build --clean --strict