Skip to content

Merge pull request #52 from themepark-dev/chore/Bump-actions/setup-py… #347

Merge pull request #52 from themepark-dev/chore/Bump-actions/setup-py…

Merge pull request #52 from themepark-dev/chore/Bump-actions/setup-py… #347

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
editorconfig-checker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: editorconfig-checker
run: |
docker run --rm -v ${GITHUB_WORKSPACE}:/check mstruebing/editorconfig-checker
yamllint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: yamllint
run: |
find ~+ ${github_workspace} -name '*.yaml' -o -name '*.yml' | xargs docker run --rm -v ${GITHUB_WORKSPACE}:${GITHUB_WORKSPACE} peterdavehello/yamllint yamllint -d '{extends: default, rules: {document-start: {present: false}, line-length: disable}}'