Skip to content

Commit

Permalink
#26 add PHP 8.3 test
Browse files Browse the repository at this point in the history
  • Loading branch information
khalyomede committed Nov 28, 2023
1 parent 3088d6a commit 787d1c4
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
php_82:
php_83:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -34,6 +34,25 @@ jobs:
- name: Code modernity check
run: docker-compose run composer run scan

php_82:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: docker-compose run composer82 install
- name: Tests
run: docker-compose run composer82 run test
- name: Static analysis
run: docker-compose run composer82 run analyse
- name: Lint
run: docker-compose run composer82 run lint
- name: Security check
run: docker-compose run composer82 run check
- name: Updates check
run: docker-compose run composer82 run updates
- name: Code modernity check
run: docker-compose run composer82 run scan

php_81:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 787d1c4

Please sign in to comment.