Skip to content

Commit

Permalink
[ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
keenborder786 committed Jun 5, 2024
1 parent 6694bc1 commit ec3d837
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
13 changes: 12 additions & 1 deletion .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,17 @@ jobs:

steps:
- uses: actions/checkout@v4


- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'

- name: Install Poetry
uses: Gr1N/setup-poetry@v8

- name: Install Packages
uses: poetry install --with dev

- name: Running Linter
run: make lint
3 changes: 1 addition & 2 deletions makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
PYTHON_FILES=src
PYTHON_FILES=./src
lint:
ls
poetry run ruff $(PYTHON_FILES)
poetry run mypy $(PYTHON_FILES)

Expand Down

0 comments on commit ec3d837

Please sign in to comment.