Skip to content

Bump paambaati/codeclimate-action from 5.0.0 to 6.0.0 (#289) #1246

Bump paambaati/codeclimate-action from 5.0.0 to 6.0.0 (#289)

Bump paambaati/codeclimate-action from 5.0.0 to 6.0.0 (#289) #1246

Workflow file for this run

name: Type check
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
- cron: "0 12 * * 6"
workflow_dispatch:
jobs:
type-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f
with:
submodules: "true"
- name: Set up Python 3.11
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d
with:
python-version: "3.11"
- name: install prerequisites
run: |
python -m pip install --upgrade pip wheel
python -m pip install -r ./python/base-requirements/nox.txt
- name: Run type checker
run: python -m nox -s type-check