microshift-io/microshift-nightly COPR: RPM with rhocp-mirror-beta configs #750
Workflow file for this run
This file contains hidden or 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: linters | |
| # Presubmit static checks and linting | |
| on: | |
| pull_request: | |
| jobs: | |
| shellcheck: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Check out MicroShift upstream repository | |
| uses: actions/checkout@v4 | |
| - name: Run ShellCheck | |
| run: | | |
| make _shellcheck | |
| hadolint: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Check out MicroShift upstream repository | |
| uses: actions/checkout@v4 | |
| - name: Run Hadolint | |
| run: | | |
| make _hadolint |