Skip to content

completed implementation of updated model functions #394

completed implementation of updated model functions

completed implementation of updated model functions #394

Workflow file for this run

name: Test
on: [push]
jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Setup rye
uses: eifinger/setup-rye@v4
with:
enable-cache: true
version: '0.39.0'
- name: Run pyright check
run: make pyright
- name: Check linting
run: rye lint bicytok
- name: Check formatting
run: rye fmt --check bicytok
- name: Test with pytest
run: make coverage.xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
flags: unittests
env_vars: OS,PYTHON
name: codecov-umbrella
fail_ci_if_error: true