Skip to content

convert to full Symfony framework #18

convert to full Symfony framework

convert to full Symfony framework #18

Workflow file for this run

name: Commit Pipeline
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
- name: Build Dependencies
run: |
composer install
# not running phpcs right now, it's going to be replaced by php-cs-fixer soon
- name: Run tests
run: |
composer run phpstan
composer run test