Skip to content

Commit

Permalink
Fix typo in Makefile command and update PHP version to 8.3 in workflo…
Browse files Browse the repository at this point in the history
…w demo.yml
  • Loading branch information
Denis Smet committed Mar 10, 2024
1 parent 94179dc commit f0a9c13
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ jobs:
pure-php:
name: Pure PHP
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [ 8.1, 8.2, 8.3 ]
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand All @@ -40,11 +37,11 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
php-version: 8.3
tools: composer

- name: Build the Project
run: make update --no-print-directory

- name: 🧪 PHPUnit Tests
- name: Validate CSV
run: make demo-github
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,12 @@ demo-invalid: ##@Project Run demo invalid CSV
--schema=./tests/schemas/demo_invalid.yml \
--output=github

demo-gihub: ##@Project Run demo invalid CSV
demo-github: ##@Project Run demo invalid CSV
@${PHP_BIN} ./csv-blueprint validate:csv \
--csv=./tests/fixtures/demo.csv \
--schema=./tests/schemas/demo_invalid.yml \
--output=github
--output=github\
--mute-errors


demo: ##@Project Run all demo commands
Expand Down

0 comments on commit f0a9c13

Please sign in to comment.