build(deps): bump symfony/framework-bundle from 7.1.4 to 7.1.5 #1084
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: CI | |
on: [ push ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Run CI suite | |
env: | |
HOST_UID: 1001 | |
HOST_GID: 121 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get Composer Cache Directory | |
id: composer-cache | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache Composer Downloads | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-composer- | |
- name: Enable docker | |
run: make enable-docker | |
- name: Build the stack | |
run: make setup | |
- name: The PHP Security Checker | |
uses: symfonycorp/security-checker-action@v5 | |
- name: Run tests | |
run: make test | |
- name: Run cs-fixer | |
run: make qa |