From e3281fc31f53c26a357ab6a1fbe69be1f45cb606 Mon Sep 17 00:00:00 2001 From: N V <44036031+progfolio@users.noreply.github.com> Date: Thu, 28 May 2020 01:22:51 -0400 Subject: [PATCH] (internal): Exclude org-roam-compat.el from linting (#713) org-roam-compat.el may contain symbols that belong to other packages. e.g. functions backported to older versions of Org mode. --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9a1fffe..03d9c74 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -54,9 +54,11 @@ jobs: # The "all" rule is not used, because it treats compilation warnings # as failures, so linting and testing are run as separate steps. + # org-roam-compat is excluded from linting because it contains + # symbols/aliases from other packages - name: Lint continue-on-error: false - run: ./makem.sh -vv --sandbox $SANDBOX_DIR lint + run: ./makem.sh -vv --sandbox $SANDBOX_DIR --exclude org-roam-compat.el lint - name: Test if: always() # Run test even if linting fails.