File tree 1 file changed +24
-6
lines changed
1 file changed +24
-6
lines changed Original file line number Diff line number Diff line change 1
1
# setup-dhall
2
2
3
- Github action to install a specific version of https://dhall-lang.org and run commands
3
+ Github action to install a specific version of https://dhall-lang.org .
4
4
5
- ## Inputs
5
+ This will add the following executables to your ` PATH ` , making them available for further actions:
6
6
7
- ### ` version `
7
+ - ` dhall `
8
+ - ` dhall-to-json `
9
+ - ` dhall-to-yaml `
10
+ - ` json-to-dhall `
11
+
12
+ ### Inputs
13
+
14
+ #### ` version `
8
15
9
16
** Optional** The version of Dhall to install. Default: ` latest ` .
10
17
11
- ## Usage
18
+ ### Usage
19
+
20
+ #### Basic Example
21
+
22
+ ``` yaml
23
+ jobs :
24
+ build :
25
+ runs-on : ubuntu-latest
26
+ steps :
27
+ - uses : craig-day/setup-dhall@v2
28
+ - run : dhall version
29
+ ` ` `
12
30
13
- ### Basic Example
31
+ #### With a Specific Version
14
32
15
33
` ` ` yaml
16
34
jobs :
19
37
steps :
20
38
- uses : craig-day/setup-dhall@v2
21
39
with :
22
- version : 1.24.0
40
+ version : ' 1.28.0 '
23
41
- run : dhall version
24
42
- run : dhall-to-json --version
25
43
` ` `
You can’t perform that action at this time.
0 commit comments