Bump symfony/http-client from 7.1.5 to 7.1.7 (#299) #567
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: Continuous Integration | |
"on": | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
schedule: | |
- cron: "0 0 * * MON" | |
permissions: | |
contents: read | |
jobs: | |
check-dockerfiles: | |
name: Check Dockerfile | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Check php/Dockerfile | |
uses: hadolint/[email protected] | |
with: | |
dockerfile: infrastructure/docker/services/php/Dockerfile | |
ci: | |
name: Continuous Integration | |
runs-on: ubuntu-latest | |
env: | |
BUILDKIT_PROGRESS: plain | |
CI: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
- | |
name: Setup PHP | |
uses: castor-php/[email protected] | |
- name: "Build and start the infrastructure" | |
run: "castor start && sleep 5" | |
- name: "Test HTTP server" | |
run: | | |
set -e | |
set -o pipefail | |
curl --fail --insecure --silent -H "Host: secret-santa.test" https://127.0.0.1 | grep "Secret Santa" | |
- name: "Run PHPUnit" | |
run: castor qa:phpunit | |
- name: "Run PHPStan" | |
run: castor qa:phpstan | |
- name: "Run PHP-CS-Fixer" | |
run: castor qa:cs |