Add support for an actor provider for extensions which use a user reference #1036
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/[email protected] | |
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/[email protected] | |
with: | |
compose-file: "./compose.yaml" | |
services: | | |
php |