Skip to content

Commit

Permalink
Merge pull request #210 from rotexdegba/3.x
Browse files Browse the repository at this point in the history
Updated Github Actions
  • Loading branch information
harikt authored Mar 14, 2024
2 parents 72ff740 + d37c20a commit b58a7aa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ jobs:
- '8.0'
- '8.1'
- '8.2'
- '8.3'
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Setup PHP ${{ matrix.php-version }}
uses: shivammathur/setup-php@v2
Expand All @@ -41,7 +42,7 @@ jobs:
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

- name: Cache dependencies
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
Expand All @@ -54,6 +55,6 @@ jobs:
run: php -d xdebug.mode=coverage ./vendor/bin/phpunit --coverage-clover=coverage.xml

- name: Upload coverage report
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: false
2 changes: 2 additions & 0 deletions tests/Common/QuoterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

class QuoterTest extends TestCase
{
protected $quoter = null;

public function set_up()
{
$this->quoter = new Quoter();
Expand Down

0 comments on commit b58a7aa

Please sign in to comment.