Skip to content

Bump aiohttp from 3.12.14 to 3.12.15 #8166

Bump aiohttp from 3.12.14 to 3.12.15

Bump aiohttp from 3.12.14 to 3.12.15 #8166

Workflow file for this run

name: Python-CI
on: [pull_request, push]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13"]
steps:
- uses: actions/checkout@cbb722410c2e876e24abbe8de2cc27693e501dcb # v3.5.2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: ${{ matrix.python-version }}
- name: Cache pip
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools
pip install flake8
pip install -r requirements.txt
- name: Lint with flake8
run: |
flake8 server/ --count --show-source --statistics
# - name: Typecheck with mypy
# run: |
# mypy server/
- name: Run unit tests
run: |
PYTHONPATH=server python tests/test.py
PYTHONPATH=server python tests/test_alice.py
PYTHONPATH=server python tests/test_auto_pairing.py
PYTHONPATH=server python tests/test_compress.py
PYTHONPATH=server python tests/test_960_rematch.py
PYTHONPATH=server python tests/test_tournament.py
PYTHONPATH=server python tests/test_scheduler.py
PYTHONPATH=server python tests/test_corr_janggi_setup.py