Skip to content

Remove the pyright check #390

Remove the pyright check

Remove the pyright check #390

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: 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