Skip to content

Add ruff linting

Add ruff linting #1

Workflow file for this run

name: Build Package
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Build the package
run: poetry build