Skip to content

Bump pytest from 8.2.0 to 8.2.1 #271

Bump pytest from 8.2.0 to 8.2.1

Bump pytest from 8.2.0 to 8.2.1 #271

Workflow file for this run

name: DNSrecon CI
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
Python:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 8
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [3.11, 3.12]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip
pip install .[dev]
- name: Lint with ruff
run: |
ruff check
- name: Format with ruff
run: |
ruff format --check --diff
- name: Test with pytest
run: |
pytest