Skip to content

Commit 1ee0987

Browse files
committed
Update simple_test workflow to use uv and run test/main.py
1 parent 9913ba8 commit 1ee0987

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

.github/workflows/simple_test.yaml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,19 @@ jobs:
2424
test:
2525
runs-on: ubuntu-latest
2626
steps:
27-
- name: Test
28-
run: echo "Hello World"
27+
- uses: actions/checkout@v4
28+
- name: Setup Python
29+
uses: actions/setup-python@v4
30+
with:
31+
python-version: '3.11'
32+
- name: Install uv
33+
run: pip install uv
34+
- name: Install dependencies
35+
run: |
36+
cd test
37+
uv sync
38+
- name: Run test
39+
run: |
40+
cd test
41+
uv run python main.py
2942

0 commit comments

Comments
 (0)