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 committed Jul 31, 2024
1 parent 58fa466 commit c99af07
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 @@ -35,6 +35,19 @@ jobs:
- name: Test that ddsidl is correct
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: |
Expand Down

0 comments on commit c99af07

Please sign in to comment.