Skip to content

use latest

use latest #861

Workflow file for this run

name: continuous-integration
on: [push, pull_request]
jobs:
pre-commit:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.12
uses: actions/setup-python@v2
with:
python-version: 3.12
- uses: pre-commit/[email protected]
build:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v3
with:
miniconda-version: "latest" # Miniconda3-py312_24.5.0-0-Linux-x86_64
activate-environment: base
environment-file: environment.yml
python-version: "3.12"
auto-activate-base: true
- name: "Build HTML docs"
run: |
make -C docs html linkcheck
env:
SPHINXOPTS: -nW --keep-going