Skip to content

Commit

Permalink
Github Actions type checking
Browse files Browse the repository at this point in the history
  • Loading branch information
craigds committed Nov 9, 2024
1 parent c21cb2a commit e026d02
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,19 @@ env:
AWS_NO_SIGN_REQUEST: "1"

jobs:
type-checking:
name: Run Type Checking
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: 'pip' # caching pip dependencies
- run: pip install -r requirements.txt -r test.txt -r dev.txt
- name: Run mypy
run: mypy

# Increase rate limits for public registry
amazon-ecr-auth:
runs-on: ubuntu-latest
Expand Down

0 comments on commit e026d02

Please sign in to comment.