CI: use a separate step to run linters

This makes it easier to separate linter dependencies from older Python
releases.
This commit is contained in:
Martijn Pieters
2023-05-15 17:09:24 +01:00
parent e57cd59c98
commit 31d0b007cd
4 changed files with 102 additions and 102 deletions

View File

@@ -5,7 +5,7 @@ up:
@poetry update
deps:
@poetry install --no-root -E all
@poetry install --no-root --with=linting -E all
style: deps
@isort -src $(checkfiles)
@@ -25,5 +25,3 @@ build: clean deps
clean:
@rm -rf ./dist
ci: check test