-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix commands * update readme Signed-off-by: Nikolay Gagarinov <[email protected]> * update readme * update PHP version * update codeclimate aciton * trigger ci * try fix codecov * comment test-coverage --------- Signed-off-by: Nikolay Gagarinov <[email protected]>
- Loading branch information
Showing
3 changed files
with
34 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,21 +23,22 @@ jobs: | |
uses: shivammathur/setup-php@v2 | ||
with: | ||
# Specify the PHP version | ||
php-version: '8.1' | ||
php-version: '8.2' | ||
- name: Install | ||
# Install project | ||
run: make install | ||
- name: Run linter | ||
# Run Linter | ||
run: make lint | ||
# Publish code coverage on Code Climate | ||
# https://github.com/paambaati/codeclimate-action | ||
- name: Run test & publish code coverage | ||
uses: paambaati/[email protected] | ||
# Add Code Climate secret key | ||
env: | ||
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | ||
with: | ||
coverageCommand: make test-coverage | ||
coverageLocations: ${{github.workplace}}/build/logs/clover.xml:clover | ||
debug: true | ||
# Publish code coverage on Code Climate | ||
# https://github.com/paambaati/codeclimate-action | ||
# NOTE: uncomment for using workflow | ||
# - name: Run test & publish code coverage | ||
# uses: paambaati/codeclimate-action@v5 | ||
# # Add Code Climate secret key | ||
# env: | ||
# CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | ||
# with: | ||
# coverageCommand: make test-coverage | ||
# coverageLocations: build/logs/clover.xml:clover | ||
# debug: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters