Trying to get rye working #104
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
run: | | |
curl -sSf https://rye.astral.sh/get | bash | |
rye pin 3.9 | |
rye sync | |
# uses: eifinger/setup-rye@v4 | |
# run: | | |
# rye pin 3.9 | |
# rye sync | |
# timeout-minutes: 5 | |
# - name: Run black | |
# run: black --check . | |
# timeout-minutes: 5 |