Skip to content

Bump coverage from 7.6.1 to 7.6.7 #551

Bump coverage from 7.6.1 to 7.6.7

Bump coverage from 7.6.1 to 7.6.7 #551

Workflow file for this run

name: Deploy docs
on: push
jobs:
build:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
steps:
- name: Checkout gh-pages
uses: actions/checkout@v4
with:
ref: gh-pages
- name: Checkout master
uses: actions/checkout@v4
with:
ref: master
- name: Get python versions
uses: chris48s/satisfying-python@main
id: python-versions
- name: Set up Python ${{ steps.python-versions.outputs.max }}
uses: actions/setup-python@v5
with:
python-version: '${{ steps.python-versions.outputs.max }}'
- name: Install dependencies
run: |
make venv
source .venv/bin/activate && pip install -e .[dev,docs]
- name: Deploy docs
run: |
make build-docs
make deploy-docs