Skip to content

Initial commit

Initial commit #3

Workflow file for this run

name: Validate Composer
on:
push:
paths:
- composer.json
jobs:
validate:
name: Validate
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.4
- name: Validate
run: composer validate --no-check-lock --no-check-version --strict