[Tree] Allow uuid as path source in materialized path strategy #990
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 |