Skip to content

frontend: Allow returning frontend yaml directly #2865

frontend: Allow returning frontend yaml directly

frontend: Allow returning frontend yaml directly #2865

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@11bd71901bbe5b1630ceea73d27597364c9af683 # v2.4.0
- name: Set up Python 3.10
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v3.0.0
with:
python-version: "3.10"
- name: Install Dependencies
run: |
pip install mypy types-PyYAML
- name: Install FI as modules
run: |
cd src && pip install .
- name: mypy
run: |
cd src && mypy --ignore-missing-imports -m main