chore: trigger release process #23
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: Dev tests | |
on: | |
pull_request: | |
env: | |
PYTHON_VERSION_DEFAULT: "3.10.8" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.10.8 | |
- name: Install uv | |
uses: yezz123/setup-uv@v4 | |
- name: Install rye | |
uses: eifinger/setup-rye@v4 | |
with: | |
version: "latest" | |
- name: Sync dependencies | |
run: rye sync | |
- name: Run checks | |
run: rye run pre-commit run --all-files |