Skip to content

Remove references to mamba from CI workflows #79

Remove references to mamba from CI workflows

Remove references to mamba from CI workflows #79

Workflow file for this run

name: Development docs CI
on:
push:
branches:
- main
pull_request:
branches:
- main
paths-ignore:
- tests/**
- ".github/**/*"
- "!.github/workflows/docs.yml"
jobs:
docs-lint:
if: github.ref != 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: markdown-link-check
uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
config-file: linkcheck.json
- if: github.event.repository.private
uses: pre-commit/action@v3.0.1
with:
extra_args: pymarkdown --all-files
- if: github.event.repository.private
uses: pre-commit/action@v3.0.1
with:
extra_args: codespell --all-files
docs-test:
needs: [docs-lint]
if: github.ref != 'refs/heads/main'
uses: arup-group/actions-city-modelling-lab/.github/workflows/docs-deploy.yml@v1.1.0
with:
deploy_type: test
notebook_kernel: genet
docs-update-latest:
permissions:
contents: write
if: github.ref == 'refs/heads/main'
uses: arup-group/actions-city-modelling-lab/.github/workflows/docs-deploy.yml@v1.1.0
with:
deploy_type: update_latest
notebook_kernel: genet