Skip to content

Commit

Permalink
build: Upgrade deps (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aviortheking authored May 5, 2022
1 parent cb2705c commit d7cd338
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
phpunit-versions: ['latest']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -31,15 +31,15 @@ jobs:
run: composer validate --strict

- name: Install Composer dependencies
uses: "ramsey/composer-install@v1"
uses: ramsey/composer-install@v1

# Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit"
# Docs: https://getcomposer.org/doc/articles/scripts.md

- name: Run test suite
run: composer run-script test

- uses: codecov/codecov-action@v2.1.0
- uses: codecov/codecov-action@v3
if: matrix.php-versions == '8.1'
with:
# Comma-separated list of files to upload
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Validate composer.json and composer.lock
run: composer validate --strict

- name: Install Composer dependencies
uses: "ramsey/composer-install@v1"
uses: ramsey/composer-install@v1

# Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit"
# Docs: https://getcomposer.org/doc/articles/scripts.md
Expand Down

0 comments on commit d7cd338

Please sign in to comment.