chore(deps): update barney.ci/model digest to 035b988 #165
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
--- | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
branches: | |
- 'main' | |
env: | |
TEST_TAG: eext:test | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Lint Dockerfile | |
uses: hadolint/[email protected] | |
with: | |
# using recursive to avoid hardcoding paths | |
# and missing any future additions | |
recursive: true | |
verbose: true | |
ignore: DL3002 | |
- name: Lint yaml files | |
run: yamllint . |