chore(deps): update actions/upload-artifact action to v5 #32
This file contains hidden or 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@v6 | |
| with: | |
| enable-cache: true | |
| cache-dependency-glob: "uv.lock" | |
| - name: Run ruff check | |
| run: uv run --frozen ruff check | |
| - name: Run ruff format | |
| run: uv run --frozen ruff format --check |