Skip to content

deps(npm)(deps-dev): bump eslint from 9.39.4 to 10.6.0 #115

deps(npm)(deps-dev): bump eslint from 9.39.4 to 10.6.0

deps(npm)(deps-dev): bump eslint from 9.39.4 to 10.6.0 #115

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Lint with ruff
run: ruff check src/ tests/ --target-version py310
- name: Run tests
run: |
python -m pytest tests/ -v --tb=short
- name: Check CLI works
run: |
api-contract-guardian --help