Skip to content

Commit 602637b

Browse files
authored
action-path (#36)
* action-path * Rust version * Rust version
1 parent 70f34b4 commit 602637b

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

action.yaml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,21 @@ inputs:
99
required: false
1010
default: "3.13"
1111
racket-version:
12-
description: "Racket version to use. -1 for no Racket"
12+
description: "Racket version to use. -1 for none."
1313
required: false
1414
default: "8.14"
1515
ocaml-version:
16-
description: "Ocaml version to use. -1 for no Ocaml"
16+
description: "Ocaml version to use. -1 for none."
1717
required: false
1818
default: "5"
1919
dotnet-version:
20-
description: "DotNet version to use. -1 for no DotNet"
20+
description: "DotNet version to use. -1 for none."
2121
required: false
2222
default: "8"
23+
rust-version:
24+
description: "Rust toolchain version to use. -1 for none."
25+
required: false
26+
default: "1.84"
2327
working-directory:
2428
description: "The working directory. Default is the root of the repository."
2529
required: false
@@ -54,7 +58,7 @@ runs:
5458
with:
5559
ocaml-compiler: ${{ inputs.ocaml-version }}
5660
- name: Install package
57-
run: pip install .
61+
run: echo $GITHUB_ACTION_PATH && pip install $GITHUB_ACTION_PATH
5862
shell: bash
5963
- name: Change directory
6064
run: |

0 commit comments

Comments
 (0)