Thanks to visit codestin.com
Credit goes to github.com

Skip to content

docs: add some contents #2

docs: add some contents

docs: add some contents #2

Workflow file for this run

name: CI
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Install Rye
uses: eifinger/setup-rye@v4
with:
version: 'latest'
- name: Set up Python ${{ matrix.python-version }}
run: rye pin ${{ matrix.python-version }}
- name: Install dependencies
run: rye sync
- name: Run linting
run: rye run ruff check --output-format=github .
- name: Run type checking
run: rye run mypy src/
- name: Run tests
run: rye run pytest tests/ -v --cov=upsilon --cov-report=xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
file: ./coverage.xml
flags: unittests
name: codecov-umbrella
fail_ci_if_error: false