Skip to content

Commit 3211fb8

Browse files
erikboschadobekan
authored andcommitted
Add check that catalog can be represented in correct CSV file
Signed-off-by: Erik Jaegervall <[email protected]>
1 parent d63292b commit 3211fb8

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/buildcheck.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,19 @@ jobs:
3636
run: |
3737
idlc vss_rel_*.idl
3838
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+
3952
- name: Test optional targets. NOTE - always succeeds
4053
run: |
4154
make -k optional_targets || true

0 commit comments

Comments
 (0)