Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/actions/setup-uv-project/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,13 @@ runs:
enable-cache: true
github-token: ${{ github.token }}

- name: Cache uv virtual environment
uses: actions/cache@v5
with:
path: .venv
key: uv-venv-${{ runner.os }}-${{ matrix.python-version || '3.11' }}-${{ hashFiles('pyproject.toml') }}
restore-keys: |
uv-venv-${{ runner.os }}-${{ matrix.python-version || '3.11' }}-

- shell: bash
run: uv sync --extra dev
1 change: 1 addition & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Package Build
permissions:
contents: read
pull-requests: read
actions: write

on:
pull_request:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Algorithm Docs Generation
permissions:
contents: read
pull-requests: read
actions: write

on:
workflow_dispatch:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/installation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Installation Tests
permissions:
contents: read
pull-requests: read
actions: write

on:
workflow_dispatch:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Code Quality & Tests
permissions:
contents: read
pull-requests: read
actions: write

on:
push:
Expand Down Expand Up @@ -63,6 +64,7 @@ jobs:
run: echo "success=true" >> $GITHUB_OUTPUT

test:
needs: linting
runs-on: pruna-cpu

strategy:
Expand Down