Skip to content

Commit

Permalink
Adding lint action
Browse files Browse the repository at this point in the history
  • Loading branch information
alterakey committed Nov 26, 2023
1 parent c15cf69 commit 66349f6
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: push

on: push

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3

- name: Setup environment
uses: actions/setup-python@v3
with:
python-version: 3.11

- name: Install dependencies
run: |
python -m pip install flit
flit install --deps=develop --only-deps
- name: Analysing the code
run: |
mypy --install-types trueseeing; mypy trueseeing
pflake8 trueseeing

0 comments on commit 66349f6

Please sign in to comment.