Skip to content

Bump aiohttp from 3.13.3 to 3.13.4 #98

Bump aiohttp from 3.13.3 to 3.13.4

Bump aiohttp from 3.13.3 to 3.13.4 #98

Workflow file for this run

name: Tests
on:
pull_request:
types:
- opened
- reopened
- edited
- synchronize
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
poetry-version: ['1.8.4']
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install Poetry
uses: abatilo/actions-poetry@v2.4.0
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Cache Poetry environment
uses: actions/cache@v3
with:
path: |
~/.cache/pypoetry
~/.cache/pip
key: poetry-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
restore-keys: |
poetry-${{ runner.os }}-
- name: Install dependencies
run: poetry install
- name: Run tests with coverage
run: |
poetry run pytest \
--cov=finam_trade_api \
--cov-report=xml \
--cov-report=term \
-p no:warnings tests/
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
file: coverage.xml