nixpkgs/.github/workflows/editorconfig.yml

23 lines
580 B
YAML
Raw Normal View History

2020-05-20 14:59:45 +00:00
name: actions
on:
pull_request:
branches:
- master
jobs:
editorconfig:
runs-on: ubuntu-latest
steps:
2020-05-20 14:59:45 +00:00
- uses: actions/checkout@v2
- uses: technote-space/get-diff-action@v1.2.8
- name: editorconfig check
2020-05-20 14:59:45 +00:00
env:
VERSION: "2.0.4"
OS: "linux"
ARCH: "amd64"
run: |
2020-05-20 21:40:40 +00:00
curl -sSf -O -L -C - https://github.com/editorconfig-checker/editorconfig-checker/releases/download/$VERSION/ec-$OS-$ARCH.tar.gz && \
2020-05-20 14:59:45 +00:00
tar xzf ec-$OS-$ARCH.tar.gz && \
./bin/ec-$OS-$ARCH -disable-indentation ${{ env.GIT_DIFF }}