mirror of
https://github.com/armbian/configng.git
synced 2026-01-06 10:37:41 -08:00
19 lines
444 B
YAML
19 lines
444 B
YAML
name: Coding style check
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, reopened, edited, synchronize, review_requested]
|
|
|
|
concurrency:
|
|
group: coding-style-${{github.event.pull_request.number}}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
editorconfig:
|
|
name: "Coding style check"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: editorconfig-checker/action-editorconfig-checker@main
|
|
- run: editorconfig-checker
|