test for ci cache
All checks were successful
/ test-build (push) Successful in 11s
/ test-uv-action (push) Successful in 16s

This commit is contained in:
Daniel Fichtinger 2025-07-15 23:39:00 -04:00
parent 8ad8bad438
commit 8c6e0c5031
2 changed files with 41 additions and 0 deletions

15
.forgejo/workflows/uv.yml Normal file
View file

@ -0,0 +1,15 @@
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!"