feat: Add streak tracking functionality #411
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: Security Checker | |
on: | |
push: | |
branches: [master, dev] | |
pull_request: | |
branches: [master, dev] | |
workflow_call: | |
jobs: | |
php: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Validate composer.json and composer.lock | |
run: composer validate | |
- uses: actions/cache@v4 | |
id: cache-db | |
with: | |
path: ~/.symfony/cache | |
key: db | |
- uses: symfonycorp/security-checker-action@v3 | |
- name: Display the vulnerabilities as JSON | |
run: echo ${{ steps.security-check.outputs.vulns }} |