Skip to content

chore: update servir, relax pandas specifier (#149) #122

chore: update servir, relax pandas specifier (#149)

chore: update servir, relax pandas specifier (#149) #122

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
Pages:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- run: |
python -m pip install --upgrade hatch
hatch run docs
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: dist
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@main