Skip to content

Commit e06efc9

Browse files
committed
Update public gh actions
1 parent ed3191c commit e06efc9

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

gh-actions/nox-run/action.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: "nox run"
2+
3+
inputs:
4+
nox-session:
5+
required: true
6+
python-version-file:
7+
required: false
8+
type: string
9+
default: pyproject.toml
10+
uv-group:
11+
required: false
12+
type: string
13+
default: nox
14+
15+
16+
runs:
17+
using: composite
18+
steps:
19+
- uses: level12/coppy/gh-actions/uv-prep@main
20+
with:
21+
python-version-file: ${{ inputs.python-version-file }}
22+
23+
- name: Run Nox Session
24+
run: |
25+
uv run --only-group ${{ inputs.uv-group }} -- nox -s ${{ inputs.nox-session }}

0 commit comments

Comments
 (0)