Skip to content

Commit

Permalink
BUGFIX: Fix composer script names in CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
bwaidelich committed Aug 29, 2023
1 parent 0304336 commit e2b84c2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,22 +64,22 @@ jobs:
run: composer install --prefer-dist --no-progress

- name: Static Analysis (PHPStan)
run: composer run-script test-phpstan
run: composer run-script test:phpstan

- name: Static Analysis (Code Sniffer)
run: composer run-script test-cs
run: composer run-script test:cs

- name: Consistency tests (SQLite)
run: composer run-script test-consistency
run: composer run-script test:consistency
env:
DCB_TEST_DSN: "pdo-sqlite:///events.sqlite"

- name: Consistency tests (MySQL)
run: composer run-script test-consistency
run: composer run-script test:consistency
env:
DCB_TEST_DSN: "pdo-mysql://root:password@127.0.0.1:${{ job.services.mysql.ports['3306'] }}/dcb"

- name: Consistency tests (PostgreSQL)
run: composer run-script test-consistency
run: composer run-script test:consistency
env:
DCB_TEST_DSN: "pdo-pgsql://root:password@127.0.0.1:${{ job.services.postgres.ports['5432'] }}/dcb"

0 comments on commit e2b84c2

Please sign in to comment.