We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3588cdd commit 444f252Copy full SHA for 444f252
.github/workflows/tlin_check.yml
@@ -31,8 +31,13 @@ jobs:
31
- name: list changed directories
32
run: |
33
echo "Changed directories: ${{ steps.changed_directories.outputs.all_changed_files }}"
34
-
35
- # - name: install tlin
36
- # run: |
37
- # cd tlin
38
- # go install ./cmd/tlin
+ - name: install tlin
+ run: |
+ cd tlin
+ go install ./cmd/tlin
+ - name: tlin check
39
40
+ for directory in ${{ steps.changed_directories.outputs.all_changed_files }}; do
41
+ echo "checking $directory ..."
42
+ tlin $directory
43
+ done
0 commit comments