feat(sentrykube): introduce additional possibilities to override config #131
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: type-checking | |
on: | |
pull_request: | |
jobs: | |
typing: | |
name: "mypy typing" | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.11 | |
- name: Make environment | |
run: make install-all-dependencies | |
- name: Run strict mypy | |
run: make cli-typecheck |