Skip to content
This repository has been archived by the owner on Jun 28, 2024. It is now read-only.

Commit

Permalink
Add PHP 8.3 to CI and add "permissions"
Browse files Browse the repository at this point in the history
  • Loading branch information
williamdes committed Mar 23, 2024
1 parent 781af99 commit 14b2ed3
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 68 deletions.
79 changes: 41 additions & 38 deletions .github/workflows/lint-and-analyse.yml
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
68 changes: 38 additions & 30 deletions .github/workflows/tests.yml
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

0 comments on commit 14b2ed3

Please sign in to comment.