Skip to content

Commit

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

This file was deleted.

24 changes: 24 additions & 0 deletions .github/workflows/lint.yml
@@ -0,0 +1,24 @@
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 dependencies
run: pip install mypy # You may need additional dependencies here
- name: Run mypy
run: mypy # Replace 'your_code_directory' with your actual code directory

0 comments on commit 1cb9e29

Please sign in to comment.