Skip to content

Add --seed to the setup command in the Makefile #41

Add --seed to the setup command in the Makefile

Add --seed to the setup command in the Makefile #41

Workflow file for this run

---
name: tests
on: push
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup PHP and Composer
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
- name: Setup Project
run: make setup
- name: Run Tests
run: make test-coverage
- name: Run Linter
run: make lint
- name: SonarQube Scan
uses: SonarSource/sonarqube-scan-action@v6
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}