Skip to content

Commit

Permalink
Merge e20a279 into ca7d85e
Browse files Browse the repository at this point in the history
  • Loading branch information
mlincett committed Sep 26, 2023
2 parents ca7d85e + e20a279 commit a6f8599
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 12 deletions.
12 changes: 0 additions & 12 deletions .github/workflows/black.yml

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/lint.yml
@@ -0,0 +1,26 @@
name: Lint

on:
push:
pull_request:

jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11' # Replace '3.x' with your desired Python version
- name: Install poetry
run: pip install poetry # You may need additional dependencies here
- name: Install flarestack
run: poetry install --with=dev
- name: Run mypy
run: mypy # Replace 'your_code_directory' with your actual code directory

0 comments on commit a6f8599

Please sign in to comment.