Skip to content

Commit

Permalink
Add workflow for setting up CI environment
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyMcCormick committed Aug 8, 2024
1 parent 3c93bcc commit 8cdd9ce
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/actions/setup.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Setup CI environment

on:
workflow_call:

jobs:

setup:

runs-on: ubuntu-latest

steps:

- name: Check out repo
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pip"

- name: Install dependencies
run: |
python -m pip install --upgrade pip uv
uv pip install --system -r requirements.txt

0 comments on commit 8cdd9ce

Please sign in to comment.