diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index bda5490..3885cff 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -23,7 +23,7 @@ jobs: run: rustup component add rustfmt clippy - name: Lint - run: ./lint.sh + run: tests/lint.sh minimal-dependency-versions: name: Validate minimal dependency versions diff --git a/Makefile b/Makefile index e96a603..9af43df 100644 --- a/Makefile +++ b/Makefile @@ -79,4 +79,4 @@ code_coverage: $(CARGO_TARGET_DIR) .PHONY: validate validate: $(CARGO_TARGET_DIR) - $(SHELL) lint.sh + $(SHELL) tests/lint.sh diff --git a/lint.sh b/tests/lint.sh similarity index 100% rename from lint.sh rename to tests/lint.sh