Skip to content

chore: bump boto3-stubs from 1.42.11 to 1.42.12 #138

chore: bump boto3-stubs from 1.42.11 to 1.42.12

chore: bump boto3-stubs from 1.42.11 to 1.42.12 #138

Workflow file for this run

name: Testing and Lint
on:
pull_request:
push:
branches:
- main
tags:
- "*.*.*"
jobs:
linting:
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: "3.12"
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip
restore-keys: ${{ runner.os }}-pip
- uses: astral-sh/ruff-action@v3
- run: ruff check --fix
- run: ruff format
test:
needs: linting
strategy:
fail-fast: true
matrix:
os: ["ubuntu-slim", "macos-latest"]
python-version: ["3.12"]
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository
uses: actions/checkout@v5
- name: Set up python ${{ matrix.python-version }}
id: setup-python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v4
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
- name: Install library
run: poetry install --no-interaction
- name: Run tests
run: |
source .venv/bin/activate
poetry run pytest -v