Bump editorconfig-checker/action-editorconfig-checker from 1.0.0 to 2.0.0 #303
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: Check General Formatting | |
# See: https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows | |
on: | |
push: | |
pull_request: | |
schedule: | |
# Run every Tuesday at 8 AM UTC to catch breakage caused by changes to tools. | |
- cron: "0 8 * * TUE" | |
workflow_dispatch: | |
repository_dispatch: | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install editorconfig-checker | |
uses: editorconfig-checker/[email protected] | |
- name: Check formatting | |
run: editorconfig-checker |