Skip to content

chore(deps): bump gunicorn from 26.0.0 to 26.2.0 #551

chore(deps): bump gunicorn from 26.0.0 to 26.2.0

chore(deps): bump gunicorn from 26.0.0 to 26.2.0 #551

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions: {}
jobs:
test:
strategy:
matrix:
include:
- name: Tests
command: bin/tests
- name: Lint
command: bin/lint
runs-on: ubuntu-latest
name: ${{ matrix.name }}
steps:
- name: Check out repository
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
with:
python-version-file: '.python-version'
cache: 'pip'
cache-dependency-path: |
requirements.txt
requirements/*.txt
- name: Install Python dependencies
run: |
pip install -U pip setuptools wheel
pip install -r requirements.txt --no-deps
- name: Run ${{ matrix.name }}
run: ${{ matrix.command }}