Skip to content

Commit

Permalink
Fixing Github action to use Rye: Take 4.
Browse files Browse the repository at this point in the history
  • Loading branch information
omaciel committed Mar 30, 2024
1 parent 38e2e54 commit d9fc7d3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,18 @@ jobs:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v4
- name: Install a specific version
uses: eifinger/setup-rye@v2
- name: Install dependencies
run: |
rye sync
- name: Pre Commit Checks
uses: pre-commit/action@v3.7.0
uses: pre-commit/action@v3.0.0
- name: Run checks
run: |
make all
Expand Down

0 comments on commit d9fc7d3

Please sign in to comment.