Skip to content

feat: implement centralized safe auditing engine and improve type saf… #7

feat: implement centralized safe auditing engine and improve type saf…

feat: implement centralized safe auditing engine and improve type saf… #7

Workflow file for this run

name: Tests
on:
push:
branches: ["main", "dev"]
pull_request:
branches: ["main"]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "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 }}
cache: "pip"
- name: Install dev dependencies
run: pip install -e ".[dev]"
- name: Run tests
run: python -m pytest tests/unit -v --cov=spring2shell --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
files: coverage.xml
continue-on-error: true