Skip to content

Commit

Permalink
Merge branch 'main' of github:line/lighthouse into add_test
Browse files Browse the repository at this point in the history
  • Loading branch information
awkrail committed Sep 12, 2024
2 parents 9f6b06b + d9b5851 commit ef3c0b3
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/mypy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Run mypy

on:
push:
branches:
- '**'
pull_request:
branches:
- '**'

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Python Setup
uses: actions/setup-python@v3
with:
python-version: 3.9

- name: Run mypy install
run: pip install mypy

- name: Run mypy
run: find lighthouse -type f -name "*.py" -not -path 'lighthouse/common/*' | xargs mypy

0 comments on commit ef3c0b3

Please sign in to comment.