Skip to content

Commit

Permalink
Merge pull request #12 from jvachier/jv/poetry
Browse files Browse the repository at this point in the history
Update poetry and overall improvement.
  • Loading branch information
jvachier authored Feb 3, 2024
2 parents 2862660 + 2b79cea commit b57b352
Show file tree
Hide file tree
Showing 6 changed files with 332 additions and 145 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Pylint
name: Checks
on:
push:
branches:
Expand All @@ -22,6 +22,6 @@ jobs:
- name: Install dependencies
run: |
make install
# - name: Lint
# run: |
# make lint
- name: Black
run: |
make black
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
install:
python -m pip install --upgrade pip &&\
pip install -r requirements.txt

lint:
pylint --disable=R,C,E0401,E0611,W0612 src/
pylint --disable=R,C src/

black:
python -m black src/

Loading

0 comments on commit b57b352

Please sign in to comment.