chore(deps): bump github.com/aws/aws-sdk-go-v2/service/ec2 from v1.11… #750
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 workflow is used to bypass the required status checks. | |
# cf. https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/troubleshooting-required-status-checks | |
name: Test | |
on: | |
push: | |
paths: | |
- '**.md' | |
- 'docs/**' | |
- 'mkdocs.yml' | |
- 'LICENSE' | |
pull_request: | |
paths: | |
- '**.md' | |
- 'docs/**' | |
- 'mkdocs.yml' | |
- 'LICENSE' | |
jobs: | |
test: | |
name: Test | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
operating-system: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- run: 'echo "No test required"' | |
integration: | |
name: Integration Test | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "No test required"' |