Publish Properties from Blender #122
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: "PR workflow" | |
on: | |
pull_request: | |
branches: | |
- "v3-dev" | |
jobs: | |
build: | |
name: Pre-commit Checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv and set the python version | |
uses: astral-sh/setup-uv@v5 | |
with: | |
python-version: "3.11" | |
enable-cache: true | |
cache-dependency-glob: "uv.lock" | |
- name: Install the project | |
run: uv sync --all-extras --dev | |
# - uses: actions/cache@v3 | |
# with: | |
# path: ~/.cache/pre-commit/ | |
# key: ${{ hashFiles('.pre-commit-config.yaml') }} | |
# - name: Run pre-commit | |
# run: uv run pre-commit run --all-files | |
- name: Minimize uv cache | |
run: uv cache prune --ci |