better coverage config #590
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
pull_request_target: | |
types: [labeled] | |
jobs: | |
lint_and_typecheck: | |
if: ${{ github.event_name == 'push' || github.event.label.name == 'run-ci' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Install Rye | |
uses: eifinger/setup-rye@v1 | |
with: | |
enable-cache: true | |
cache-prefix: 'refiners-rye-cache' | |
- name: add home shims dir to PATH | |
run: echo "$HOME/.rye/shims" >> $GITHUB_PATH | |
- name: pin python | |
run: rye pin 3.10 | |
- name: rye sync | |
run: rye sync --all-features | |
- name: ruff format | |
run: rye run ruff format --check . | |
- name: ruff check | |
run: rye run ruff check . | |
- name: typecheck | |
run: rye run pyright |