Skip to content

Rename typings to typing, bump version #61

Rename typings to typing, bump version

Rename typings to typing, bump version #61

Workflow file for this run

on:
push:
branches:
- main
pull_request:
jobs:
build-package:
uses: ./.github/workflows/build-package.yml
secrets: inherit
build-doc:
uses: ./.github/workflows/build-doc.yml
needs: [build-package]
secrets: inherit
tests:
uses: ./.github/workflows/tests.yml
needs: [build-package]
secrets: inherit
deploy:
if: github.ref == 'refs/heads/main'
uses: ./.github/workflows/deploy.yml
needs: [build-doc, tests]
secrets: inherit
permissions:
contents: write