Skip to content

Commit

Permalink
Add PHP 8.3 (#86)
Browse files Browse the repository at this point in the history
* Add PHP 8.3

* rollback ci change

* Revert
  • Loading branch information
inverse authored Nov 27, 2023
1 parent f94b3c3 commit 91e504d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Install PHP
uses: shivammathur/setup-php@master
with:
php-version: '8.2'
php-version: '8.3'
- name: Install dependencies
run: composer install
- name: Run tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: ['8.2', '8.1', '8.0']
php-version: ['8.3', '8.2', '8.1', '8.0']
steps:
- uses: actions/checkout@v4
- name: Install PHP
Expand All @@ -19,7 +19,7 @@ jobs:
run: |
XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-clover coverage.xml
- uses: codecov/codecov-action@v3
if: matrix.php-version == '8.2'
if: matrix.php-version == '8.3'
with:
token: ${{ secrets.CODECOV_TOKEN }}
phpstan:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ COPY composer.json /app

RUN composer install --no-dev --optimize-autoloader

FROM php:8.2-alpine
FROM php:8.3-alpine

COPY . /app

Expand Down

0 comments on commit 91e504d

Please sign in to comment.