Skip to content

Merge pull request #275 from davidbarratt/psr-http-upgrade #180

Merge pull request #275 from davidbarratt/psr-http-upgrade

Merge pull request #275 from davidbarratt/psr-http-upgrade #180

Workflow file for this run

name: Lint
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
jobs:
build:
runs-on: ubuntu-latest
env:
LOWEST: '0'
PHP_VERSION: '8.3'
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ env.PHP_VERSION }}
- name: Cache Composer dependencies
uses: actions/cache@v2
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-php${{ env.PHP_VERSION }}-lowest${{ env.LOWEST }}-{{ hashFiles('**/composer.lock') }}
- name: Install dependencies
uses: php-actions/composer@v5
env:
COMPOSER_PREFER_LOWEST: ${{ env.LOWEST }}
with:
command: install
args: --prefer-dist --no-progress --prefer-stable --no-suggest --verbose
php_version: ${{ env.PHP_VERSION }}
version: 1
- name: Run lint
run: make lint