Skip to content

fix: make sure pyright is happy with external deps (#296) #1036

fix: make sure pyright is happy with external deps (#296)

fix: make sure pyright is happy with external deps (#296) #1036

Workflow file for this run

name: CI
on:
push:
branches:
- main
tags:
- '*'
pull_request:
jobs:
lint:
uses: ./.github/workflows/_tox.yml
with:
tox: pre-commit
test:
uses: ./.github/workflows/_test.yml
with:
runs-on: ubuntu-latest
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
docs:
uses: ./.github/workflows/_docs.yml
permissions:
contents: write
example:
needs: test
if: github.ref_name == 'main'
uses: ./.github/workflows/_example.yml
secrets:
EXAMPLE_DEPLOY_KEY: ${{ secrets.EXAMPLE_DEPLOY_KEY }}
release:
needs: [test, docs]
if: github.ref_type == 'tag'
uses: ./.github/workflows/_release.yml
permissions:
contents: write