From e026d0253515f885b4097741a9f8c00f8659c7ce Mon Sep 17 00:00:00 2001 From: Craig de Stigter Date: Sat, 9 Nov 2024 22:06:26 +1300 Subject: [PATCH] Github Actions type checking --- .github/workflows/build.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8c9e5aeb..2a46e0c2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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