diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 57b0ca8..a56aa32 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -34,4 +34,4 @@ jobs: cache: 'pip' cache-dependency-path: 'requirements*.txt' - run: make devinstall - - run: make rufftest + - run: make linttest diff --git a/Makefile b/Makefile index de25a8d..3ea80b8 100644 --- a/Makefile +++ b/Makefile @@ -8,8 +8,8 @@ install: pip install --upgrade pip pip install --upgrade --upgrade-strategy eager -r requirements.txt -.PHONY: rufftest -rufftest: +.PHONY: linttest +linttest: ruff . .PHONY: clean