Fix test db build. #94
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: dockerfile Linting | |
on: | |
pull_request: | |
branches: | |
- 'master' | |
paths: | |
- 'Dockerfile' | |
- '.github/workflows/dockerfile-lint.yml' | |
push: | |
branches: | |
- 'master' | |
paths: | |
- 'Dockerfile' | |
- '.github/workflows/dockerfile-lint.yml' | |
jobs: | |
dockerfile-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: lint Dockerfile | |
uses: hadolint/hadolint-action@v1.5.0 | |
with: | |
dockerfile: Dockerfile | |
ignore: DL3008 DL3002 DL3013 DL3059 SC2102 |