Spaces:
Running
Running
Jeremiah Lowin commited on
Commit ·
5591543
1
Parent(s): 95ca50c
Install dependencies
Browse files
.github/workflows/run-static.yml
CHANGED
|
@@ -22,9 +22,13 @@ jobs:
|
|
| 22 |
|
| 23 |
steps:
|
| 24 |
- uses: actions/checkout@v4
|
|
|
|
|
|
|
| 25 |
- name: Set up Python
|
| 26 |
uses: actions/setup-python@v5
|
| 27 |
with:
|
| 28 |
python-version: "3.12"
|
|
|
|
|
|
|
| 29 |
- name: Run pre-commit
|
| 30 |
uses: pre-commit/action@v3.0.1
|
|
|
|
| 22 |
|
| 23 |
steps:
|
| 24 |
- uses: actions/checkout@v4
|
| 25 |
+
- name: Install uv
|
| 26 |
+
uses: astral-sh/setup-uv@v4
|
| 27 |
- name: Set up Python
|
| 28 |
uses: actions/setup-python@v5
|
| 29 |
with:
|
| 30 |
python-version: "3.12"
|
| 31 |
+
- name: Install dependencies
|
| 32 |
+
run: uv sync
|
| 33 |
- name: Run pre-commit
|
| 34 |
uses: pre-commit/action@v3.0.1
|