chore(deps): update dependency botocore to v1.35.97 #1056
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 Code | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
lint-python: | |
name: Lint Python | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Lint Python (Flake8) | |
uses: grantmcconnaughey/lintly-flake8-github-action@master | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
lint-bash: | |
name: Lint Bash | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Lint Bash (Shellcheck) | |
uses: ludeeus/action-shellcheck@master | |
with: | |
scandir: './scripts' | |
additional_files: 'install' |