Skip to content

lint+test: ruff format on test_mbpp_train; update mbpp test for wildc… #49

lint+test: ruff format on test_mbpp_train; update mbpp test for wildc…

lint+test: ruff format on test_mbpp_train; update mbpp test for wildc… #49

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
jobs:
check:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
- name: install
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: ruff
run: ruff check src tests scripts
- name: pyright
run: pyright
- name: pytest
run: pytest