Bump boto3-stubs from 1.35.63 to 1.35.68 #3661
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: Linting | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] | |
name: Python ${{ matrix.python-version }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
- name: Check pip | |
run: pip --version | |
- name: Update pip | |
run: pip install --upgrade pip | |
- name: Install poetry | |
run: pip install poetry | |
- name: poetry install | |
run: poetry install | |
- name: check code style with black | |
run: make black | |
if: ${{ matrix.python-version == '3.8' || matrix.python-version == '3.9' }} # broken in 3.6 currently | |
- name: flake8 tests | |
run: make flake8 | |
if: ${{ matrix.python-version == '3.8' || matrix.python-version == '3.9' }} | |
- name: bandit | |
run: make bandit | |
if: ${{ matrix.python-version == '3.8' || matrix.python-version == '3.9' }} | |
- name: mypy | |
run: make mypy | |
if: ${{ matrix.python-version == '3.8' || matrix.python-version == '3.9' }} |