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

feat: phpunit workflow #1

feat: phpunit workflow

feat: phpunit workflow #1

Workflow file for this run

name: Symfony-Tests
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
- name: Install dependencies
run: cd backend && composer install
- name: Run PHPUnit tests
run: php bin/phpunit