Skip to content

Bump docker/build-push-action from 6.6.1 to 6.7.0 #1375

Bump docker/build-push-action from 6.6.1 to 6.7.0

Bump docker/build-push-action from 6.6.1 to 6.7.0 #1375

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@692973e3d937129bcbf40652eb9f2f61becf3332
with:
submodules: "true"
- name: Set up Python 3.11
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f
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