Add a unit test for the expected behaviour when inheriting from an unparameterized generic base class #50
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Documentation | |
on: | |
push: | |
branches: [ "develop" ] | |
tags: [ "*" ] | |
pull_request: | |
branches: [ "develop" ] | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: NiklasRosenstein/slap@gha/install/v1 | |
- run: slap install --only-extras docs --no-venv-check | |
- run: slap run --no-venv-check docs:build | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: docs | |
path: docs/_site | |
docs-publish: | |
needs: [ docs ] | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/develop' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v4 | |
with: { name: docs, path: docs/site } | |
- uses: JamesIves/github-pages-deploy-action@v4.6.1 | |
with: { branch: gh-pages, folder: docs/site, ssh-key: "${{ secrets.DEPLOY_KEY }}" } |