Skip to content

fix: deploy-ci

fix: deploy-ci #48

name: Run code checks
on:
# Trigger code checks on opening a new pull request.
# Secrets are only made available to the integration tests job, with a manual approval
# step required for PRs from forks. This prevents their potential exposure.
pull_request:
# Pushing to the master branch triggers code checks
push:
branches:
- master
tags-ignore:
- "**" # Ignore all tags to prevent duplicate checks when tags are pushed.
# It should also be possible to trigger checks manually
workflow_dispatch:
jobs:
lint_check:
name: Lint check
uses: ./.github/workflows/python_lint_check.yaml
type_check:
name: Type check
uses: ./.github/workflows/python_type_check.yaml