| 123456789101112131415161718192021222324252627 |
- name: EditorConfig Checker
- on:
- workflow_dispatch: # allows manual triggering
- inputs:
- create_release:
- description: 'Create new release'
- required: true
- type: boolean
- push:
- branches:
- - master
- pull_request:
- branches:
- - master
- concurrency:
- group: ${{ github.workflow }}-${{ github.ref }}
- cancel-in-progress: true
- jobs:
- editorconfig:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v4
- - uses: editorconfig-checker/action-editorconfig-checker@main
- - run: editorconfig-checker
|