Skip to content

feat(ci): Added lint,test scripts. Also added .github workflows for t… #8

feat(ci): Added lint,test scripts. Also added .github workflows for t…

feat(ci): Added lint,test scripts. Also added .github workflows for t… #8

Workflow file for this run

name: Lint
on:
push:
branches: [main, master, develop]
pull_request:
branches: [main, master, develop]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
- name: Install uv
uses: astral-sh/setup-uv@v2
- name: Run linting
run: bash ./scripts/lint.sh