Skip to content

ci: add ci.yaml for github workflows #1

ci: add ci.yaml for github workflows

ci: add ci.yaml for github workflows #1

Workflow file for this run

on:

Check failure on line 1 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yaml

Invalid workflow file

`branches` is not a valid event name
branches:
jobs:
dependency-validation:
name: Dependency Validation
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache Composer dependencies
uses: actions/cache@v3
with:
path: /tmp/composer-cache
key: "${{ runner.os }}-${{ hashFiles('**/composer.lock') }}"
- name: Install Composer
uses: php-actions/composer@v6
- name: Ensure that composer.json is valid
run: composer validate --no-ansi --strict composer.json
- name: Ensure that dependencies can be installed
run: composer install --no-ansi --dry-run