This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
chore: update vimeo/psalm requirement from ^4.8 to ^5.25 #51
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
name: CI | |
on: [push, pull_request] | |
jobs: | |
commits: | |
name: Commitlint | |
runs-on: ubuntu-latest | |
container: practically/conventional-tools:1.x | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: {fetch-depth: 1000} | |
- name: Git safe.directory | |
run: git config --global --add safe.directory $PWD | |
- name: Lint commits | |
run: conventional-tools commitlint -l1 | |
phpcs: | |
name: PHP Code Sniffer | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.0' | |
tools: composer:v2 | |
- name: Install Composer dependencies | |
run: composer install --no-progress --prefer-dist --optimize-autoloader | |
- name: Run PHP Code Sniffer | |
run: composer run cs:check-errors | |
psalm: | |
name: Psalm | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.0' | |
tools: composer:v2 | |
- name: Install Composer dependencies | |
run: composer install --no-progress --prefer-dist --optimize-autoloader | |
- name: Run Psalm | |
run: composer run psalm | |
test: | |
name: Test PHP ${{ matrix.php-versions }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
tools: composer:v2 | |
coverage: xdebug | |
- name: Install Composer dependencies | |
run: composer install --no-progress --prefer-dist --optimize-autoloader | |
- name: Run tests | |
run: composer run test |