Skip to content

Commit

Permalink
CI: Add editorconfig-checker
Browse files Browse the repository at this point in the history
  • Loading branch information
jayvdb committed Apr 1, 2024
1 parent 60547c9 commit 0294930
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ jobs:
shell: bash

steps:
- name: Setup git checkout linefeeds on Windows
if: runner.os == 'Windows'
run: |
git config --system core.autocrlf false
git config --system core.eol lf
- uses: actions/checkout@v4
# Postgresql setup adapted from Diesel CI
# Disable ssl as server doesn't have a trusted cert
Expand Down Expand Up @@ -82,7 +87,9 @@ jobs:
- name: Install Rust tools
uses: taiki-e/install-action@v2
with:
tool: typos
tool: editorconfig-checker,typos
- name: Run editorconfig-checker
run: editorconfig-checker
- name: Build
run: make build
- name: Lint
Expand Down

0 comments on commit 0294930

Please sign in to comment.