Skip to content

added compute flow #114

added compute flow

added compute flow #114

name: check-for-linter
on:
push:
branches: main
pull_request:
branches: main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup PHP with Xdebug
uses: shivammathur/setup-php@ec406be512d7077f68eed36e63f4d91bc006edc4
with:
php-version: '8.3'
coverage: xdebug
- name: Install dependencies with composer
run: composer update --no-ansi --no-interaction --no-progress
- name: Install project
run: make install
- name: Validate files for linter
run: make lint
- name: Run unit tests
run: make test-sonar
- name: SonarQube Scan
uses: SonarSource/sonarqube-scan-action@1a6d90ebcb0e6a6b1d87e37ba693fe453195ae25
env:
SONAR_TOKEN: ${{secrets.SONAR_TOKEN}}