We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d63292b commit 3211fb8Copy full SHA for 3211fb8
.github/workflows/buildcheck.yml
@@ -36,6 +36,19 @@ jobs:
36
run: |
37
idlc vss_rel_*.idl
38
39
+
40
+ - name: Prepare for CSV check
41
+ uses: actions/setup-go@v5
42
+ with:
43
+ go-version: 'stable'
44
+ cache: false
45
46
+ - name: Test that CSV generated by vss-tools is correct
47
+ run: |
48
+ # Install csvlint to check compliance with https://datatracker.ietf.org/doc/html/rfc4180
49
+ go install github.com/Clever/csvlint/cmd/csvlint@latest
50
+ csvlint vss_rel_*.csv
51
52
- name: Test optional targets. NOTE - always succeeds
53
54
make -k optional_targets || true
0 commit comments