Bump aws from 5.20.0 to 5.21.0 #41
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
# This confirms that the repo is properly validated according | |
# to the information located in README-HEADER.md | |
name: Validate | |
on: | |
pull_request: | |
# Run tests when PRs opened or updated | |
types: [opened, synchronize] | |
branches: | |
- main | |
concurrency: validate-${{ github.base_ref }} | |
jobs: | |
validate: | |
name: "Validate" | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@main | |
- name: Setup rtx | |
uses: jdx/rtx-action@v1 | |
- name: "Validate Module" | |
run: ./scripts/validate.sh |