Update Oracle Database 21c README to reflect Oracle Linux 7 and 8 sup… #4
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: Lint | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| hadolint: | |
| name: hadolint (${{ matrix.dockerfile }}) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| dockerfile: [Dockerfile.ol7, Dockerfile.ol8] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Run hadolint on ${{ matrix.dockerfile }} | |
| uses: hadolint/[email protected] | |
| with: | |
| dockerfile: ${{ matrix.dockerfile }} | |
| shellcheck: | |
| name: ShellCheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Run ShellCheck | |
| run: find . -type f -name "*.sh" -exec shellcheck {} + | |
| shfmt: | |
| name: shfmt | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Run shfmt | |
| uses: luizm/[email protected] | |
| env: | |
| SHFMT_OPTS: -l -d -i 2 -ci -bn | |
| with: | |
| sh_checker_shellcheck_disable: true |