Skip to content

fix: add missing package #32

fix: add missing package

fix: add missing package #32

Workflow file for this run

---
# Template: 1.1.0
name: "Lint / Hadolint"
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
env:
DEV_CICD_DEBUG: ""
on:
pull_request:
branches:
- "master"
push:
branches:
- "feature/**"
paths:
- "src/dockerfiles/*/*"
jobs:
lint-hadolint:
runs-on: "ubuntu-latest"
steps:
- name: "Check out repository code"
uses: "actions/checkout@main"
- name: "Prepare dev environment"
run: "./bin/dev-lib-installer64 && ./bin/dev-lib-project"
- name: "Run tests"
run: "./bin/dev-lint-hadolint"
...