Skip to content

feat: added ci checking #1

feat: added ci checking

feat: added ci checking #1

Workflow file for this run

name: ci
on:
push:
branches: [master, dev]
jobs:
package:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@main
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v2
with:
version: "latest"
enable-cache: true
- name: Install Python and package dependencies
run: uv venv && uv pip sync
- name: Install ruff
run: uv add ruff
- name: Run ruff
run: uv run ruff check src