Skip to content

Commit

Permalink
Merge branch 'release/1.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
matiux committed Sep 20, 2022
2 parents 71b9615 + dd4ca34 commit 41a44c6
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/check-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,7 @@ jobs:
${{ runner.os }}-php-
- name: Install dependencies
run: composer install --prefer-dist --no-progress
run: composer install --prefer-dist --no-progress

- name: Check dependency vulnerabilities
run: ./tools/bin/project/project check-deps-vulnerabilities
2 changes: 1 addition & 1 deletion .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ jobs:
run: composer install --prefer-dist --no-progress

- name: "coding-standard-check"
run: ./tools/bin/project coding-standard-fix-all
run: ./tools/bin/project/project coding-standard-fix-all
2 changes: 1 addition & 1 deletion .github/workflows/security-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ jobs:
run: composer install --prefer-dist --no-progress

- name: "running security analysis ( psalm )"
run: ./tools/bin/project security-analysis
run: ./tools/bin/project/project security-analysis
4 changes: 2 additions & 2 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: composer install --prefer-dist --no-progress

- name: "running static analysis"
run: ./tools/bin/project psalm
run: ./tools/bin/project/project psalm

- name: "calculating type coverage"
run: ./tools/bin/project type-coverage
run: ./tools/bin/project/project type-coverage
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ jobs:
run: composer install --prefer-dist --no-progress

- name: Create Schema
run: ./tools/bin/project schema-create
run: ./tools/bin/project/project schema-create

- name: "Run unit tests (PHPUnit)"
env:
XDEBUG_MODE: coverage

run: ./tools/bin/project coverage
run: ./tools/bin/project/project coverage

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
Expand Down

0 comments on commit 41a44c6

Please sign in to comment.