mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-22 20:01:06 +07:00
Add timeout to codecov step in the workflow
This commit is contained in:
parent
46f009cce1
commit
0ac43c03b2
14
.github/workflows/workflow.yml
vendored
14
.github/workflows/workflow.yml
vendored
@ -24,16 +24,20 @@ jobs:
|
|||||||
- name: Installing NPM packages
|
- name: Installing NPM packages
|
||||||
run: npm install
|
run: npm install
|
||||||
|
|
||||||
- name: Run tests and send coverage
|
- name: Run tests
|
||||||
run: |
|
run: npm test
|
||||||
npm test
|
|
||||||
curl -s https://codecov.io/bash | bash -s -- -t ${{secrets.CODECOV_TOKEN}} -f coverage/clover.xml -n github-actions-codecov-${{ matrix.operating-system }}-php${{ matrix.php-versions }}
|
- name: Send Coverage
|
||||||
|
continue-on-error: true
|
||||||
|
timeout-minutes: 2
|
||||||
|
shell: pwsh
|
||||||
|
run: curl -s https://codecov.io/bash | bash -s -- -t ${{secrets.CODECOV_TOKEN}} -f coverage/clover.xml -n github-actions-codecov-${{ matrix.operating-system }}-php${{ matrix.php-versions }}
|
||||||
|
|
||||||
- name: Installing PHP with extensions and custom config
|
- name: Installing PHP with extensions and custom config
|
||||||
run: node lib/install.js
|
run: node lib/install.js
|
||||||
env:
|
env:
|
||||||
php-version: ${{ matrix.php-versions }}
|
php-version: ${{ matrix.php-versions }}
|
||||||
extension-csv: mbstring, xdebug, pcov, pdo_mysql #optional
|
extension-csv: mbstring, xdebug, pcov #optional
|
||||||
ini-values-csv: post_max_size=256M, short_open_tag=On, date.timezone=Asia/Kolkata #optional
|
ini-values-csv: post_max_size=256M, short_open_tag=On, date.timezone=Asia/Kolkata #optional
|
||||||
|
|
||||||
- name: Testing PHP version
|
- name: Testing PHP version
|
||||||
|
Loading…
Reference in New Issue
Block a user