Skip to content

Commit

Permalink
Merge pull request #93 from rdohms/task/fix-style
Browse files Browse the repository at this point in the history
Spring cleaning.
  • Loading branch information
rdohms authored Sep 5, 2023
2 parents cb5123d + c293b9e commit 5e50dda
Show file tree
Hide file tree
Showing 62 changed files with 206 additions and 2,752 deletions.
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,11 @@ updates:
labels:
- "Dependencies"
versioning-strategy: auto

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
labels:
- "ci"
- "dependencies"
2 changes: 1 addition & 1 deletion .github/workflows/check-cs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.0
php-version: 8.1
coverage: none
tools: composer, cs2pr

Expand Down
12 changes: 9 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,14 @@ jobs:

strategy:
matrix:
php: [8.0, 8.1]
dependency-version: [prefer-lowest, prefer-stable]
php: [8.0, 8.1, 8.2]
dependency-version: [--prefer-lowest, --prefer-stable]
experimental: [false]

include:
- php: '8.3'
dependency-version: --prefer-stable
experimental: true

name: P${{ matrix.php }} - ${{ matrix.dependency-version }}

Expand All @@ -35,7 +41,7 @@ jobs:

- name: Install dependencies
run: |
composer update --${{ matrix.dependency-version }} --prefer-dist --no-progress
composer update ${{ matrix.dependency-version }} --prefer-dist --no-progress
- name: Execute Unit Tests
run: vendor/bin/phpunit
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ tests/_reports
vendor
/.phpcs.cache
/.phpunit.result.cache
composer.lock
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"doctrine/cache": "~1.3",
"phpunit/phpunit": "^9",
"laminas/laminas-filter": "^2.9",
"dms/coding-standard": "^8.0"
"dms/coding-standard": "^12"
},
"autoload": {
"psr-0": {
Expand Down
Loading

0 comments on commit 5e50dda

Please sign in to comment.