--- #433
Workflow file for this run
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: test-n-lint | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
lint-docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install hadolint | |
run: | | |
url_api="https://api.github.com/repos/hadolint/hadolint/releases/latest" | |
version=$(curl --silent $url_api | jq -r .tag_name) | |
url_rlz="https://github.com/hadolint/hadolint/releases/download/${version}" | |
file='hadolint-Linux-x86_64' | |
wget "${url_rlz}/$file" | |
chmod u+x "$file" | |
ln -s "$file" hadolint | |
- name: Check Docker files | |
run: | | |
for file in $(find . -name Dockerfile); do | |
./hadolint --ignore DL3008 --ignore DL3018 --ignore DL3059 $file | |
done | |
lint-markdown: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install mardownlint | |
run: | | |
sudo apt-get install ruby-full | |
sudo gem install mdl | |
- name: Check md files | |
run: | | |
for file in $(find . -name "*.md"); do | |
mdl $file | |
done |