Fix sentry callback service + README update #14
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Coverage and QA | |
on: [ pull_request ] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/${{ github.repository_owner }}/symfony-docker:php8.2 | |
credentials: | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Validate composer.json | |
run: composer validate | |
- name: Composer install | |
run: composer install | |
- name: Run coverage | |
run: make coverage | |
- name: Clear cache | |
run: php bin/console c:c | |
- name: Run qualimetry | |
run: make qa |