From 8461b7e7ba401bfd40aa60d06733fe9c1366564b Mon Sep 17 00:00:00 2001 From: Denis Smet Date: Mon, 11 Mar 2024 16:58:10 +0400 Subject: [PATCH] Add support for reporting invalid CSV file as a table in GitHub Annotations. --- .github/workflows/demo.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/demo.yml b/.github/workflows/demo.yml index 0e9b518f..4f7b8d5b 100644 --- a/.github/workflows/demo.yml +++ b/.github/workflows/demo.yml @@ -78,20 +78,20 @@ jobs: fetch-depth: 0 - name: 👍 Valid CSV file - uses: JBZoo/Csv-Blueprint@0.1 + uses: jbzoo/csv-blueprint@master with: csv: tests/fixtures/demo.csv schema: tests/schemas/demo_valid.yml - name: 👎 Invalid CSV file - Report as GitHub Annotations - uses: JBZoo/Csv-Blueprint@0.1 + uses: jbzoo/csv-blueprint@master with: csv: tests/fixtures/demo.csv schema: tests/schemas/demo_invalid.yml continue-on-error: true - name: 👎 Invalid CSV file - Report as Table - uses: JBZoo/Csv-Blueprint@latest + uses: jbzoo/csv-blueprint@master with: csv: tests/fixtures/demo.csv schema: tests/schemas/demo_invalid.yml