Skip to content

Commit

Permalink
Create mypy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rhoadesScholar authored Aug 8, 2024
1 parent c80162e commit a26cb28
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/mypy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Python mypy

on: [push, pull_request]

jobs:
static-analysis:
name: Python mypy
runs-on: ubuntu-latest
steps:
- name: Setup Python
uses: actions/setup-python@v5
- name: Setup checkout
uses: actions/checkout@v4
- name: mypy
run: |
pip install .
pip install --upgrade mypy
mypy src/cellmap_data

0 comments on commit a26cb28

Please sign in to comment.