CI: Allow installation of ros-*-rmw-connextdds in docker images (#3063) #205
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: Docker Lint | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- .docker/** | |
- .github/workflows/docker_lint.yaml | |
pull_request: | |
paths: | |
- .docker/** | |
- .github/workflows/docker_lint.yaml | |
jobs: | |
docker-lint: | |
strategy: | |
fail-fast: false | |
matrix: | |
DOCKERFILE_PATH: [ci, ci-testing, release, source] | |
name: Lint Dockerfiles | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: hadolint/[email protected] | |
with: | |
dockerfile: .docker/${{ matrix.DOCKERFILE_PATH }}/Dockerfile | |
config: .docker/.hadolint.yaml |