Automerge ruff bumps and update deprecated preset name #2
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: CI | |
permissions: read-all | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
check-scripts: | |
name: Check scripts | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
working-directory: ./scripts | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@main | |
- name: Install the latest version of uv | |
uses: eifinger/setup-uv@v1 | |
with: | |
enable-cache: true | |
- name: Run ruff check | |
run: uv run --frozen ruff check | |
- name: Run ruff format | |
run: uv run --frozen ruff format --check |