initial commit #2
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: "Lint" | |
on: [push, pull_request] | |
jobs: | |
lint-yaml: | |
name: "YAML" | |
runs-on: ubuntu-22.04 | |
env: | |
YAML_FILES: | | |
.github/workflows/lint.yml | |
action.yml | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: sudo apt-get update && sudo apt-get install -y yamllint shellcheck | |
- name: Validate YAML Files | |
run: yamllint $YAML_FILES | |
shellcheck: | |
name: "Shell Scripts" | |
runs-on: ubuntu-22.04 | |
env: | |
SHELL_FILES: entrypoint.sh | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: sudo apt-get update && sudo apt-get install -y shellcheck | |
- name: Validate Shell Scripts | |
run: shellcheck $SHELL_FILES |