Skip to content

Commit 80abfac

Browse files
committed
refactor(ci): remove unused skip-mock-server option from setup-nix
The skip-mock-server option was only used by the release workflow, which now uses nix develop directly instead of the setup-nix action. This simplifies the action by removing the unused input.
1 parent 893ed42 commit 80abfac

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.github/actions/setup-nix/action.yaml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ inputs:
99
description: "Skip uv sync step (useful for jobs that do not need Python dependencies)"
1010
required: false
1111
default: "false"
12-
skip-mock-server:
13-
description: "Skip MCP mock server dependencies installation (useful for jobs that do not run tests)"
14-
required: false
15-
default: "false"
1612
runs:
1713
using: "composite"
1814
steps:
@@ -46,7 +42,7 @@ runs:
4642
run: uv sync --all-extras
4743

4844
- name: Install MCP mock server dependencies
49-
if: inputs.skip-uv-sync != 'true' && inputs.skip-mock-server != 'true'
45+
if: inputs.skip-uv-sync != 'true'
5046
shell: bash
5147
run: |
5248
if [ -f vendor/stackone-ai-node/package.json ]; then

0 commit comments

Comments
 (0)