Skip to content

Commit

Permalink
Revert "add makefile and update github action to use it"
Browse files Browse the repository at this point in the history
This reverts commit f52a1db.
  • Loading branch information
atarutin committed May 26, 2024
1 parent fc62c51 commit 5b1df90
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 27 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: Checklist
name: Python application

on:
push:
Expand All @@ -26,8 +26,11 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint pytest mypy
pip install pylint pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run checklist
- name: Run linter
run: |
make checklist
pylint **/*.py --rcfile=.pylintrc
- name: Test with pytest
run: |
pytest
23 changes: 0 additions & 23 deletions makefile

This file was deleted.

0 comments on commit 5b1df90

Please sign in to comment.