Add a trust path for users #83
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: CI | |
on: pull_request | |
jobs: | |
Test: | |
runs-on: | |
- self-hosted | |
- CI-CD | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v4 | |
- name: Run actionlint | |
run: actionlint -ignore 'label "CI-CD" is unknown' .github/workflows/CI.yml | |
- name: Run codespell | |
run: codespell --enable-colors | |
- name: Run mdl | |
run: mdl --style .github/workflows/mdl_style.rb . | |
- name: Run shellcheck | |
run: find . -name '*.sh' -exec shellcheck --color=always {} + | |
- name: Run hadolint | |
run: docker run --rm -i -v "${PWD}"/.github/workflows/hadolint.rules:/.config/hadolint.yaml hadolint/hadolint < Dockerfile | |
- name: Cleanup docker images | |
run: docker image prune -af |