Skip to content

Fix #66: dataclass from Generic now serializes #74

Fix #66: dataclass from Generic now serializes

Fix #66: dataclass from Generic now serializes #74

Workflow file for this run

name: "Python"
on:
push: { branches: [ "develop" ], tags: [ "*" ] }
pull_request: { branches: [ "develop" ] }
jobs:
test:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.x"]
steps:
- uses: actions/checkout@v2
- uses: NiklasRosenstein/slap@gha/install/v1
- uses: actions/setup-python@v2
with: { python-version: "${{ matrix.python-version }}" }
- run: slap install --link --no-venv-check
- run: slap test
- run: slap publish --dry
documentation:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: NiklasRosenstein/slap@gha/install/v1
- uses: actions/setup-python@v2
with: { python-version: "3.10" }
- run: slap --version && slap install --only-extras docs --no-venv-check
- run: slap run --no-venv-check docs:build
- uses: JamesIves/[email protected]
with: { branch: gh-pages, folder: docs/_site, ssh-key: "${{ secrets.DEPLOY_KEY }}" }
if: github.ref == 'refs/heads/develop'