diff --git a/.github/workflows/checker.yml b/.github/workflows/analyze.yml similarity index 99% rename from .github/workflows/checker.yml rename to .github/workflows/analyze.yml index b20cb481..8d4ded49 100644 --- a/.github/workflows/checker.yml +++ b/.github/workflows/analyze.yml @@ -1,4 +1,4 @@ -name: Checker +name: Analyze on: push: diff --git a/Makefile b/Makefile index c87eed4f..d5fa01b9 100644 --- a/Makefile +++ b/Makefile @@ -33,8 +33,8 @@ command-local: ./test/commands/local/run.sh command-analyze: - ./test/checker/dsl/run.sh - ./test/checker/metadata/run.sh + ./test/commands/analyze/dsl/run.sh + ./test/commands/analyze/metadata/run.sh command-docker: ./test/commands/docker/run.sh diff --git a/test/checker/dsl/.gitignore b/test/commands/analyze/dsl/.gitignore similarity index 100% rename from test/checker/dsl/.gitignore rename to test/commands/analyze/dsl/.gitignore diff --git a/test/checker/dsl/Eask b/test/commands/analyze/dsl/Eask similarity index 100% rename from test/checker/dsl/Eask rename to test/commands/analyze/dsl/Eask diff --git a/test/checker/dsl/check-dsl.el b/test/commands/analyze/dsl/check-dsl.el similarity index 100% rename from test/checker/dsl/check-dsl.el rename to test/commands/analyze/dsl/check-dsl.el diff --git a/test/checker/dsl/run.sh b/test/commands/analyze/dsl/run.sh similarity index 100% rename from test/checker/dsl/run.sh rename to test/commands/analyze/dsl/run.sh diff --git a/test/checker/metadata/.gitignore b/test/commands/analyze/metadata/.gitignore similarity index 100% rename from test/checker/metadata/.gitignore rename to test/commands/analyze/metadata/.gitignore diff --git a/test/checker/metadata/Eask b/test/commands/analyze/metadata/Eask similarity index 100% rename from test/checker/metadata/Eask rename to test/commands/analyze/metadata/Eask diff --git a/test/checker/metadata/check-metadata.el b/test/commands/analyze/metadata/check-metadata.el similarity index 100% rename from test/checker/metadata/check-metadata.el rename to test/commands/analyze/metadata/check-metadata.el diff --git a/test/checker/metadata/run.sh b/test/commands/analyze/metadata/run.sh similarity index 100% rename from test/checker/metadata/run.sh rename to test/commands/analyze/metadata/run.sh