Rewrite the loggable extension documentation #960
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: "Quality Assurance" | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- ".docker/php/Dockerfile" | |
- "compose.yaml" | |
pull_request: | |
schedule: | |
- cron: "0 0 * * 0" | |
jobs: | |
lint-dockerfile: | |
name: Hadolint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Lint Dockerfile | |
uses: hadolint/hadolint-action@v3.1.0 | |
with: | |
dockerfile: ".docker/php/Dockerfile" | |
build: | |
runs-on: ubuntu-latest | |
name: Build containers with Docker Compose | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build "php" container | |
uses: isbang/compose-action@v2.0.1 | |
with: | |
compose-file: "./compose.yaml" | |
services: | | |
php |