Skip to content

build(deps): bump aiohttp from 3.10.2 to 3.10.11 (#903) #2040

build(deps): bump aiohttp from 3.10.2 to 3.10.11 (#903)

build(deps): bump aiohttp from 3.10.2 to 3.10.11 (#903) #2040

Workflow file for this run

name: CI
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "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_system_deps
run: sudo make install_system_deps
- name: install
run: make install
- name: lint
run: make lint
- name: mypy
run: make mypy
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "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_system_deps
run: sudo make install_system_deps
- name: install
run: make install
- name: test
run: make test
env:
FTP_PATH: ${{ secrets.FTP_PATH }}
- name: Upload coverage
uses: codecov/codecov-action@v5