This repository has been archived by the owner on Jun 28, 2024. It is now read-only.
forked from brozot/Laravel-FCM
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add PHP 8.3 to CI and add "permissions"
- Loading branch information
1 parent
781af99
commit 14b2ed3
Showing
2 changed files
with
79 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,47 @@ | ||
name: Lint and analyse files | ||
|
||
permissions: | ||
contents: read | ||
|
||
on: [push] | ||
|
||
jobs: | ||
lint-php: | ||
name: Lint file | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use php 7.1 | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: 7.1 | ||
- name: Validate composer.json and composer.lock | ||
run: composer validate | ||
- name: Cache module | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.composer/cache/ | ||
key: composer-cache | ||
- name: Install dependencies | ||
run: composer install --no-interaction | ||
- name: Lint files | ||
run: composer run phpcs | ||
lint-php: | ||
name: Lint file | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use php 7.1 | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: 7.1 | ||
- name: Validate composer.json and composer.lock | ||
run: composer validate | ||
- name: Cache module | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.composer/cache/ | ||
key: composer-cache | ||
- name: Install dependencies | ||
run: composer install --no-interaction | ||
- name: Lint files | ||
run: composer run phpcs | ||
|
||
analyse-php: | ||
name: Analyse files | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use php 7.4 | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: 7.4 | ||
- name: Cache module | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.composer/cache/ | ||
key: composer-cache | ||
- name: Install dependencies | ||
run: composer install --no-interaction | ||
- name: Analyse files | ||
run: composer run phpstan | ||
analyse-php: | ||
name: Analyse files | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use php 7.4 | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: 7.4 | ||
- name: Cache module | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.composer/cache/ | ||
key: composer-cache | ||
- name: Install dependencies | ||
run: composer install --no-interaction | ||
- name: Analyse files | ||
run: composer run phpstan |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,46 @@ | ||
name: Run tests | ||
|
||
permissions: | ||
contents: read | ||
|
||
on: | ||
push: | ||
pull_request: | ||
types: [opened, synchronize, reopened] | ||
|
||
jobs: | ||
test-php: | ||
name: Test on php ${{ matrix.php-version }} and ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
continue-on-error: ${{ matrix.experimental }} | ||
strategy: | ||
matrix: | ||
php-version: ["7.1.3", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1", "8.2"] | ||
experimental: [false] | ||
os: [ubuntu-latest] | ||
composer-options: [''] | ||
include: | ||
- { php-version: 'nightly', composer-options: '--ignore-platform-req=php', experimental: true, os: ubuntu-latest } | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use php ${{ matrix.php-version }} | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php-version }} | ||
coverage: xdebug | ||
- name: Cache module | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.composer/cache/ | ||
key: composer-cache | ||
- name: Install dependencies | ||
run: composer install --no-interaction --prefer-dist --no-progress ${{ matrix.composer-options }} | ||
- name: Run php tests | ||
run: composer run test | ||
- name: Send coverage | ||
uses: codecov/codecov-action@v3 | ||
test-php: | ||
name: Test on php ${{ matrix.php-version }} and ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
continue-on-error: ${{ matrix.experimental }} | ||
strategy: | ||
matrix: | ||
php-version: ["7.1.3", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3"] | ||
experimental: [false] | ||
os: [ubuntu-latest] | ||
composer-options: [""] | ||
include: | ||
- { | ||
php-version: "nightly", | ||
composer-options: "--ignore-platform-req=php", | ||
experimental: true, | ||
os: ubuntu-latest, | ||
} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use php ${{ matrix.php-version }} | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php-version }} | ||
coverage: xdebug | ||
- name: Cache module | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.composer/cache/ | ||
key: composer-cache | ||
- name: Install dependencies | ||
run: composer install --no-interaction --prefer-dist --no-progress ${{ matrix.composer-options }} | ||
- name: Run php tests | ||
run: composer run test | ||
- name: Send coverage | ||
uses: codecov/codecov-action@v3 |