wip #13
Workflow file for this run
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
--- | ||
name: CI | ||
on: | ||
push: | ||
jobs: | ||
ci-lint: | ||
runs-on: ubuntu-latest | ||
# if one fails workflow fails | ||
allow-failure: false | ||
Check failure on line 9 in .github/workflows/ci.yml GitHub Actions / CIInvalid workflow file
|
||
# if one fails continues running the others | ||
fail-fast: false | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
- name: yaml-lint | ||
uses: ibiqlik/action-yamllint@v3 | ||
- name: Vale Linter | ||
uses: errata-ai/[email protected] | ||
- name: typos-action | ||
uses: crate-ci/[email protected] | ||
- name: EditorConfig-Action | ||
uses: zbeekman/[email protected] |