Skip to content

Commit

Permalink
cicd: add composite setup action
Browse files Browse the repository at this point in the history
  • Loading branch information
dynobo committed Nov 5, 2024
1 parent 99d8525 commit 2f505de
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/actions/setup/action.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Setup
description: Checkout, install python and uv

runs:
using: 'composite'
steps:

- name: install uv
uses: astral-sh/setup-uv@v3
with:
version: "0.4.30"
enable-cache: true

- uses: actions/setup-python@v5
with:
python-version: "3.10"

- name: uv sync
run: uv sync

0 comments on commit 2f505de

Please sign in to comment.