From 89a4ea8073bd46cfeb5a78706f55608ead8aeb57 Mon Sep 17 00:00:00 2001 From: Ben Grande Date: Mon, 8 Jul 2024 17:17:16 +0200 Subject: [PATCH] ci: show all errors by continuing on error --- .github/workflows/main.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index cec090d..c83ac9f 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -35,7 +35,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-python@v5 - name: Update package list - run: sudo apt-get -y update + run: sudo apt-get update -y - name: Install OS packages # yamllint disable-line rule:line-length run: sudo apt-get install -y $(cat dependencies/debian.txt) @@ -45,13 +45,16 @@ jobs: - name: Install pip packages run: pip3 install $(cat dependencies/pip.txt) - uses: pre-commit/action@v3.0.1 + continue-on-error: true env: SPEC_VENDOR: Github Actions SPEC_PACKAGER: Github Actions - uses: editorconfig-checker/action-editorconfig-checker@main - name: Run Editorconfig Checker + continue-on-error: true run: editorconfig-checker - name: Lint commits + continue-on-error: true # yamllint disable-line rule:line-length run: | if test "${{ github.event_name}}" = "pull_request"