zona/.forgejo/workflows/uv.yml
Daniel Fichtinger 1ee879082f
Some checks failed
/ test-build (push) Failing after 4s
test for ci cache
2025-07-16 00:14:37 -04:00

14 lines
379 B
YAML

on: [push]
jobs:
test-build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: 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!"