Skip to content

build(deps): bump actions/checkout from 4.1.2 to 4.1.3 #2274

build(deps): bump actions/checkout from 4.1.2 to 4.1.3

build(deps): bump actions/checkout from 4.1.2 to 4.1.3 #2274

Workflow file for this run

name: Mypy
on:
pull_request:
paths:
- 'src/**'
- 'frontends/python/**'
- 'oss_fuzz_integration/**'
- '.github/workflows/mypy.yml'
permissions: read-all
jobs:
build:
runs-on: ubuntu-latest
name: Mypy
steps:
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v2.4.0
- name: Set up Python 3.8
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v3.0.0
with:
python-version: 3.8
- name: Install Dependencies
run: |
pip install mypy types-PyYAML
- name: mypy
run: |
cd src && mypy --ignore-missing-imports -m main