[CI] Add openstacksdk to packages installed with homebrew. #54
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: 'Lint Github Action Files' | |
| on: | |
| pull_request: | |
| branches: | |
| - '**' | |
| paths: | |
| - '.github/workflows/*.yml' | |
| jobs: | |
| lint-action-files: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: actionlint | |
| uses: raven-actions/actionlint@v2 | |
| with: | |
| files: '.github/workflows/*.yml' | |
| fail-on-error: false | |
| flags: '-ignore SC2046 -ignore SC2086' # Variable quoting error in shellcheck |