We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fcefd7 commit 1e63a37Copy full SHA for 1e63a37
.github/workflows/test.yml
@@ -28,3 +28,20 @@ jobs:
28
run: |
29
cd test
30
uv run main.py
31
+ test-without-python:
32
+ strategy:
33
+ matrix:
34
+ os: [ubuntu-latest, macos-latest, windows-latest]
35
+
36
+ runs-on: ${{ matrix.os }}
37
+ steps:
38
+ - uses: actions/checkout@v4
39
+ - name: install dependencies
40
+ uses: ./
41
+ with:
42
+ extra-args: '--directory test'
43
+ - name: run script
44
+ run: |
45
+ cd test
46
+ uv run main.py
47
+ uv run -v
action.yml
@@ -38,6 +38,7 @@ runs:
- name: Install python if Python version is provided
if: ${{ inputs.python-version == '' }}
run: uv python install
+ shell: bash
# Step 2: Install dependencies
- name: Install dependencies
run: uv sync ${{ inputs.extra-args }}
0 commit comments