Merge pull request #460 from vulhub/hadolint-upgrade #1
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: Vulhub Format Check and Lint | |
on: [push, pull_request] | |
jobs: | |
format-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: install dependencies | |
run: | | |
python -m pip install -U pytest | |
sudo wget -O /usr/local/bin/hadolint https://github.com/hadolint/hadolint/releases/download/v2.12.0/hadolint-Linux-x86_64 | |
sudo chmod +x /usr/local/bin/hadolint | |
- name: Check | |
run: | | |
python -m pytest tests/check | |
markdown-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
- name: install dependencies | |
run: | | |
npm install -g markdownlint-cli | |
- name: check markdown | |
run: | | |
markdownlint -c tests/markdownlint.json . |