Skip to content

Using rye for Python and package management #100

Using rye for Python and package management

Using rye for Python and package management #100

Workflow file for this run

name: Run formatter
on: [push]
jobs:
format:
runs-on: ubuntu-latest
name: Format code
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up rye
uses: eifinger/setup-rye@v4
run: |
rye pin 3.9
rye sync
- name: Run black
run: black --check .
timeout-minutes: 5