Skip to content

Commit

Permalink
Fix deprecated code
Browse files Browse the repository at this point in the history
  • Loading branch information
chdemko committed Feb 2, 2024
1 parent 2b76628 commit d456c55
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['8.1', '8.2', '8.3'] # '7.2', '7.3', '7.4', '8.0', '8.1', '8.2',
php-versions: ['8.0', '8.1', '8.2', '8.3'] # '7.2', '7.3', '7.4', '8.0', '8.1', '8.2',
name: PHP ${{ matrix.php-versions }}

steps:
Expand Down Expand Up @@ -51,6 +51,16 @@ jobs:
- name: Run test
run: composer run test

coverage:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install dependencies
run: composer install --no-progress

- name: Upload coverage results to Coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
Expand Down

0 comments on commit d456c55

Please sign in to comment.