Skip to content

Commit

Permalink
Fix indentation and add line breaks for readability.
Browse files Browse the repository at this point in the history
  • Loading branch information
Denis Smet committed Mar 11, 2024
1 parent 730c8a1 commit caa6192
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,9 @@ jobs:

- name: Trying to use the phar file
run: |
./build/csv-blueprint.phar validate:csv
--csv=./tests/fixtures/demo.csv
./build/csv-blueprint.phar \
validate:csv \
--csv=./tests/fixtures/demo.csv \
--schema=./tests/schemas/demo_invalid.yml
continue-on-error: true

Expand All @@ -98,10 +99,10 @@ jobs:
steps:
- name: Trying to use the dcoker image
run: |
docker run
-v `pwd`:/parent-host
--rm jbzoo/csv-blueprint
validate:csv
--csv=/parent-host/tests/fixtures/demo.csv
docker run \
-v `pwd`:/parent-host \
--rm jbzoo/csv-blueprint \
validate:csv \
--csv=/parent-host/tests/fixtures/demo.csv \
--schema=/parent-host/tests/schemas/demo_invalid.yml
continue-on-error: true

0 comments on commit caa6192

Please sign in to comment.