Skip to content

fix: correct author email to admin@greyforge.tech #2

fix: correct author email to admin@greyforge.tech

fix: correct author email to admin@greyforge.tech #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- run: python -m pip install --upgrade pip
- run: python -m pip install -e ".[dev]"
- run: python -m ruff check .
- run: python -m ruff format --check .
- run: python -m pytest