Skip to content

Build and check package/docs #1

Build and check package/docs

Build and check package/docs #1

Workflow file for this run

name: Build and check package/docs
on:
schedule:
- cron: "0 6 * * 1" # every monday at 06:00 UTC
workflow_dispatch:
jobs:
build:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
defaults:
run:
shell: bash -elo pipefail {0}
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Create environment with Micromamba
uses: mamba-org/setup-micromamba@v1
with:
cache-downloads: true
cache-environment: true
environment-file: environments/tests/env-test-build.yml
post-cleanup: none
- name: Build package and twine check
run: |
hatch build --clean
twine check --strict ./dist/*
- name: Build docs and check links
run: python -m sphinx -E -W --keep-going -b linkcheck ./docs/source ./docs/build/linkcheck