zona/.forgejo/workflows/uv.yml
Daniel Fichtinger 1229203dbd
All checks were successful
/ test-build (push) Successful in 8s
/ test-uv-action (push) Successful in 17s
test for ci cache
2025-07-16 00:34:21 -04:00

15 lines
412 B
YAML

on: [push]
jobs:
test-uv-action:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install uv
id: setup-uv
uses: https://github.com/astral-sh/setup-uv@v6
with:
enable-cache: true
- run: uv sync && uv build
- name: test cache restored
if: steps.setup-uv.outputs.cache-hit == 'true'
run: echo "Cache was restored!"