-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: show all errors by continuing on error
- Loading branch information
1 parent
4a56d53
commit 89a4ea8
Showing
1 changed file
with
4 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/[email protected] | ||
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" | ||
|