Skip to content

Commit

Permalink
Merge pull request #12 from phpolar/fix-latest-build-workflow
Browse files Browse the repository at this point in the history
ci: fix latest build workflow
  • Loading branch information
ericfortmeyer committed May 6, 2023
2 parents 1c11d86 + 6a3f5ef commit 644a00b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/php-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: ['ubuntu-20.04', 'windows-latest', 'macos-latest']
operating-system: ['ubuntu-22.04', 'ubuntu-20.04', 'windows-latest', 'macos-latest']
php-versions: [latest, nightly]
phpunit-versions: ['latest']
steps:
Expand Down Expand Up @@ -38,4 +38,4 @@ jobs:
run: composer ci:analyze

- name: Run test suite
run: composer ci:test
run: composer ci:test-build
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"test:unit": "@test --configuration=phpunit.dev.xml --testsuite unit",
"test:coverage": "XDEBUG_MODE=coverage composer exec \"@test:unit --coverage-text\"",
"ci:test": "XDEBUG_MODE=coverage composer exec \"@test --configuration=phpunit.ci.xml --coverage-clover=build/logs/clover.xml\"",
"ci:test-build": "composer exec \"@test --configuration=phpunit.ci.xml\"",
"ci:generate-coverage-badge": "composer exec \"php-coveralls -v\""
}
}

0 comments on commit 644a00b

Please sign in to comment.