Skip to content

Upstream merge 2024 09 08 #41

Upstream merge 2024 09 08

Upstream merge 2024 09 08 #41

Workflow file for this run

name: Dockerfile Linting
# Run the test suite on pushes (incl. merges) to master and dev
# Run the test suite when a PR is opened, pushed to, or reopened
on:
push:
branches:
- staging
- main
paths:
- deploy/docker/seqr/Dockerfile
- hail_search/deploy/Dockerfile
- .hadolint.yaml
- .docker-compose.yaml
- .github/workflows/docker-lint.yaml
pull_request:
types: [opened, synchronize, reopened]
branches:
- staging
- main
paths:
- deploy/docker/seqr/Dockerfile
- hail_search/deploy/Dockerfile
- .hadolint.yaml
- .docker-compose.yaml
- .github/workflows/docker-lint.yaml
jobs:
hadolint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Validate docker compose
run: docker-compose -f docker-compose.yml config
- uses: hadolint/[email protected]
with:
dockerfile: deploy/docker/seqr/Dockerfile
ignore: DL4006 DL3022
- uses: hadolint/[email protected]
with:
dockerfile: hail_search/deploy/Dockerfile