resort gitignore #105
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: Verify | |
# yamllint disable-line rule:truthy | |
on: [ push, pull_request, workflow_dispatch ] | |
permissions: | |
contents: read | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.21' | |
- name: Run EditorConfig Checker | |
run: | | |
go run github.com/editorconfig-checker/editorconfig-checker/cmd/editorconfig-checker@2.7.2 --exclude .git | |
- name: Run yamllint | |
run: | | |
pip install yamllint | |
yamllint . | |
- uses: bewuethr/shellcheck-action@v2 | |
- uses: DavidAnson/markdownlint-cli2-action@v14 | |
- name: Run Taplo | |
run: | | |
curl --fail --silent --show-error --location --output taplo.gz \ | |
https://github.com/tamasfe/taplo/releases/download/0.8.1/taplo-full-linux-x86_64.gz | |
gunzip --decompress taplo.gz | |
chmod +x taplo | |
./taplo fmt --check | |
./taplo check --default-schema-catalogs |