We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
editorconfig-checker
1 parent bddb987 commit 5fe4226Copy full SHA for 5fe4226
.github/workflows/ci.yml
@@ -17,9 +17,12 @@ jobs:
17
# reviewing!
18
- name: Check out code.
19
uses: actions/checkout@v3
20
+ - uses: 'actions/setup-go@v4'
21
+ with:
22
+ go-version: '1.20'
23
- name: 'Check EditorConfig Lint'
24
run: |
- sudo apt install -y jq golang
25
+ sudo apt install -y jq
26
go install 'github.com/editorconfig-checker/editorconfig-checker/cmd/editorconfig-checker@latest'
27
28
readarray -t changed_files <<<"$(jq -r '.[]' <<<'${{ steps.files.outputs.added_modified }}')"
0 commit comments