Skip to content

Update aiohttp to 3.11.10 #728

Update aiohttp to 3.11.10

Update aiohttp to 3.11.10 #728

Workflow file for this run

name: Django CI
# Enable Buildkit and let compose use it to speed up image building
env:
DOCKER_BUILDKIT: 1
COMPOSE_DOCKER_CLI_BUILD: 1
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.10]
steps:
- uses: actions/checkout@v3
- name: Build the stack and run tests
run: docker-compose -f docker/docker-compose-actions.yml up -d --build
- name: Tear down the Stack
run: docker-compose -f docker/docker-compose-actions.yml down