Skip to content

Commit

Permalink
[TASK] Update GitHub action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
astehlik committed Aug 10, 2024
1 parent d413ebd commit 2f9bb65
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
- run: |
bash bin/t3_run_tests.sh -s functional -d sqlite -p ${{ env.MAIN_PHP_VERSION }}
"php-functional-tests-mariadb-main":
"php-functional-tests-mariadb":
name: "Functional tests on MariaDB"
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
php_version: ${{ env.MAIN_PHP_VERSION }}
- run: |
bash bin/t3_run_tests.sh -s unit -p ${{ env.MAIN_PHP_VERSION }} -X coverage -- --coverage-clover Logs/clover-unit.xml --coverage-filter ../Classes
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: coverage-phpunit
path: Logs/clover-unit.xml
Expand All @@ -173,7 +173,7 @@ jobs:
php_version: ${{ env.MAIN_PHP_VERSION }}
- run: |
bash bin/t3_run_tests.sh -s functional -d mariadb -p ${{ env.MAIN_PHP_VERSION }} -X coverage -- --coverage-clover Logs/clover-functional.xml --coverage-filter ../Classes
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: coverage-functional
path: Logs/clover-functional.xml
Expand All @@ -190,10 +190,10 @@ jobs:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: coverage-phpunit
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: coverage-functional
- run: curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
Expand Down

0 comments on commit 2f9bb65

Please sign in to comment.