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

Update actions/checkout action to v4 #75

Update actions/checkout action to v4

Update actions/checkout action to v4 #75

Workflow file for this run

name: PHP Composer
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Run phpstan
run: composer run phpstan