Skip to content

Commit

Permalink
Add check that catalog can be represented in correct CSV file
Browse files Browse the repository at this point in the history
Signed-off-by: Erik Jaegervall <[email protected]>
  • Loading branch information
erikbosch authored and adobekan committed Aug 13, 2024
1 parent d63292b commit 3211fb8
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/buildcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,19 @@ jobs:
run: |
idlc vss_rel_*.idl
- name: Prepare for CSV check
uses: actions/setup-go@v5
with:
go-version: 'stable'
cache: false

- name: Test that CSV generated by vss-tools is correct
run: |
# Install csvlint to check compliance with https://datatracker.ietf.org/doc/html/rfc4180
go install github.com/Clever/csvlint/cmd/csvlint@latest
csvlint vss_rel_*.csv
- name: Test optional targets. NOTE - always succeeds
run: |
make -k optional_targets || true
Expand Down

0 comments on commit 3211fb8

Please sign in to comment.