From 6d27fb664488228abb4386abfd42b1bca3eadd36 Mon Sep 17 00:00:00 2001 From: SmetDenis Date: Wed, 29 May 2024 12:57:05 +0400 Subject: [PATCH] Update workflow to use Dockerfile for CSV validation --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e290e429..20cf1e04 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -308,13 +308,13 @@ jobs: ref: ${{ github.event.pull_request.head.ref }} - name: 👍 Valid CSV files - uses: Dockerfile + uses: ./ with: csv: ./tests/fixtures/batch/*.csv schema: ./tests/schemas/demo_valid.yml - name: 👎 Invalid CSV files - uses: Dockerfile + uses: ./ with: csv: ./tests/fixtures/batch/*.csv schema: ./tests/schemas/demo_*.yml