From 42c3dc844ec91943836cc58893bcf05e112d14eb Mon Sep 17 00:00:00 2001 From: Masafumi Koba <473530+ybiquitous@users.noreply.github.com> Date: Tue, 6 Aug 2024 09:37:11 +0900 Subject: [PATCH] Fix CI job name (#14) The job now includes also testing, not only linting. --- .github/workflows/test.yml | 2 +- Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 26ee166..9a393ac 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,7 +7,7 @@ on: branches: ["**"] jobs: - lint: + lint-and-test: runs-on: ubuntu-latest strategy: fail-fast: false diff --git a/Makefile b/Makefile index 2d14cb5..4b325b4 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ check: - emacs --batch \ - --load ert \ + emacs --batch \ + --load ert \ --load rbs-mode-test.el \ --funcall ert-run-tests-batch-and-exit .PHONY: check