Skip to content

Rename repo from bzhr -> yellowstone. #30

Rename repo from bzhr -> yellowstone.

Rename repo from bzhr -> yellowstone. #30

Workflow file for this run

name: Python Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
env:
RUFF_NO_CACHE: 'true'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: pip install -r requirements.dev.txt
- name: MyPy
run: mypy bzhr
- name: Lints
run: ruff check bzhr
- name: Formatting
run: ruff format --check bzhr