Skip to content

Add CI jobs to run through examples #480

Add CI jobs to run through examples

Add CI jobs to run through examples #480

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
on:
push:
branches: [ "develop" ]
tags: [ "*" ]
pull_request:
branches: [ "develop" ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.x" ]
steps:
- uses: ./.github/actions/install
with:
python_version: ${{ matrix.python-version }}
- name: Test
run: slap test
documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Checkout branch if PR
if: github.event_name == 'pull_request'
run: git checkout -b $GITHUB_HEAD_REF
- uses: NiklasRosenstein/slap@gha/install/v1
- name: Install
run: slap install --extras docs --no-venv-check
- name: Build documentation
run: cd docs && novella --base-url pydoc-markdown/
- uses: JamesIves/[email protected]
if: github.ref == 'refs/heads/develop'
with: { branch: gh-pages, folder: docs/_site, ssh-key: "${{ secrets.DEPLOY_KEY }}" }