Skip to content

feat: Add project aliases for renamed project matching (#102) #177

feat: Add project aliases for renamed project matching (#102)

feat: Add project aliases for renamed project matching (#102) #177

Workflow file for this run

name: Python
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
check:
name: Format & Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Check formatting
run: ruff format --check src tests
- name: Lint
run: ruff check src tests
test:
name: Test Suite
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Run tests
run: pytest -v