Bump cfn-lint from 1.22.1 to 1.22.2 #197
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: Test usage | |
on: # yamllint disable-line rule:truthy | |
push: ~ | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
name: Test the action | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- template: bucket.yml | |
fail-flag: false | |
- template: demo.yml | |
fail-flag: true | |
steps: | |
- uses: actions/checkout@v4 | |
- id: lint | |
name: Lint ${{ matrix.template }} | |
continue-on-error: ${{ matrix.fail-flag }} | |
uses: ./ | |
with: | |
template: templates/${{ matrix.template }} | |
- name: Check fails ↪️ | |
shell: bash | |
run: | | |
./pass-intended-fails.sh \ | |
${{ steps.lint.outcome }} \ | |
${{ matrix.fail-flag }} |