Skip to content

Merge pull request #113 from zaproxy/dependabot/pip/requests-2.32.3 #124

Merge pull request #113 from zaproxy/dependabot/pip/requests-2.32.3

Merge pull request #113 from zaproxy/dependabot/pip/requests-2.32.3 #124

Workflow file for this run

name: Python CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: |
python -m pip install --upgrade pip
pipx install poetry==1.7.0
- run: poetry install
- run: poetry run pylama
- run: poetry run py.test