Skip to content

build(deps): bump aiohttp from 3.9.0 to 3.9.2 (#338) #1220

build(deps): bump aiohttp from 3.9.0 to 3.9.2 (#338)

build(deps): bump aiohttp from 3.9.0 to 3.9.2 (#338) #1220

Workflow file for this run

name: Python test
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install poetry dependencies
run: |
export PATH="$PATH:$HOME/.local/bin"
poetry install --with=dev
- name: Run pre-commit
run: |
export PATH="$PATH:$HOME/.local/bin"
source `poetry env info --path`/bin/activate
pre-commit run --all-files