From 3ce29bee46d0ff5a2091a85ef053cb1a19aa6d99 Mon Sep 17 00:00:00 2001 From: Adam Porter Date: Wed, 8 Jan 2020 12:45:53 -0600 Subject: [PATCH] Meta: (test.yml) Don't count lint failure as job failure It's more valuable to see at a glance that the tests passed than to have every run indicate failure because of lint failures, especially when some of the lint failures come from package-lint issues that may be patched in the future. --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b56b721..4d96ba5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -61,6 +61,7 @@ jobs: # as failures, so linting and testing are run as separate steps. - name: Lint + continue-on-error: true run: ./makem.sh -vv --sandbox-dir=$SANDBOX_DIR lint - name: Test