(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.
This commit is contained in:
N V 2020-05-28 01:22:51 -04:00 committed by GitHub
parent 5ee38f2d89
commit e3281fc31f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -54,9 +54,11 @@ jobs:
# The "all" rule is not used, because it treats compilation warnings # The "all" rule is not used, because it treats compilation warnings
# as failures, so linting and testing are run as separate steps. # 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 - name: Lint
continue-on-error: false 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 - name: Test
if: always() # Run test even if linting fails. if: always() # Run test even if linting fails.