Skip to content

fix: update all URLs from LocalEvo to SkillScan #1

fix: update all URLs from LocalEvo to SkillScan

fix: update all URLs from LocalEvo to SkillScan #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["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 }}
- name: Install dependencies
run: pip install -e ".[dev]"
- name: Run tests
run: pytest tests/ -v --ignore=tests/test_sandbox_integration.py
- name: Run tests with coverage
if: matrix.python-version == '3.12'
run: pytest tests/ -v --cov=skillscan --cov-report=xml --ignore=tests/test_sandbox_integration.py
- name: Upload coverage
if: matrix.python-version == '3.12'
uses: codecov/codecov-action@v4
with:
file: coverage.xml
continue-on-error: true