Skip to content

Commit

Permalink
Add parallel validation for CSV files in workflow
Browse files Browse the repository at this point in the history
The updated workflow file now includes steps to run validation on both valid and invalid CSV files in parallel. This change is intended to increase overall efficiency of the validation process by speeding it up through simultaneous execution.
  • Loading branch information
SmetDenis committed Apr 11, 2024
1 parent c3f3d0a commit d1e7891
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,13 @@ jobs:
run: |
! $BLUEPRINT_DOCKER $CMD_VALIDATE $INVALID_TEST
- name: 👍 Valid CSV files (Parallel)
run: $BLUEPRINT_DOCKER $CMD_VALIDATE $VALID_TEST --parallel

- name: 👎 Invalid CSV files (Parallel)
run: |
! $BLUEPRINT_DOCKER $CMD_VALIDATE $INVALID_TEST --parallel
- name: 🔥 Quick Benchmark 🔥
run: |
make build > /dev/null 2>&1
Expand Down

0 comments on commit d1e7891

Please sign in to comment.