Skip to content

test: prevent installed wheel shadowing (#158) #345

test: prevent installed wheel shadowing (#158)

test: prevent installed wheel shadowing (#158) #345

Workflow file for this run

name: CI
on:
push:
branches: ["main", "feat/**", "fix/**"]
pull_request:
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install package and dev deps
run: pip install -e ".[dev]"
- name: Lint
run: ruff check src tests
- name: Type check
run: mypy src/agentrust_trace
- name: Test
run: pytest --cov=agentrust_trace --cov-report=term-missing