Initialize daily_matches with the first match in match history #259
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: lint-dockerfiles | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
paths: | |
- 'Dockerfile' | |
- 'docker-compose.yaml' | |
permissions: | |
contents: read | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Lint Docker Compose files | |
run: docker compose config -q --no-interpolate || exit 1 | |
- name: Lint Dockerfiles | |
uses: hadolint/[email protected] | |
with: | |
ignore: "DL3013" |