Skip to content

update merge ci

update merge ci #199

Workflow file for this run

name: pr ci
on:
pull_request:
concurrency:
group: pr-${{ github.ref }}
cancel-in-progress: true
jobs:
pr:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install dependencies
run: |
pip install uv
uv pip install -r requirements.txt --system
- name: lint and test
run: |
echo Checking formatting...
ruff format --check .
echo Checking linting...
ruff check .
echo Running tests...
pytest