File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -10,34 +10,34 @@ inputs:
10
10
version :
11
11
description : The version of mecha to install
12
12
required : true
13
- default : " latest"
13
+ default : ' latest'
14
14
source :
15
15
description : The list of data packs, functions files or folders to validate
16
16
required : true
17
17
minecraft :
18
18
description : The version of minecraft to use for checking commands
19
19
required : true
20
- default : " 1.17"
20
+ default : ' 1.17'
21
21
log :
22
22
description : The output log level
23
23
required : true
24
- default : " WARNING"
24
+ default : ' WARNING'
25
25
26
26
runs :
27
27
using : composite
28
28
steps :
29
29
- name : Setup python
30
30
uses : actions/setup-python@v2
31
31
with :
32
- python-version : " 3.9"
32
+ python-version : ' 3.9'
33
33
- name : Setup cache
34
34
id : cached-mecha-venv
35
35
uses : actions/cache@v2
36
36
with :
37
37
path : ~/.mecha_venv
38
38
key : mecha-venv-${{ runner.os }}-${{ inputs.version }}
39
39
- name : Install mecha
40
- if : steps.cached-mecha-venv.outputs.cache-hit != " true"
40
+ if : steps.cached-mecha-venv.outputs.cache-hit != ' true'
41
41
env :
42
42
MECHA_VERSION : ${{ inputs.version }}
43
43
run : |
You can’t perform that action at this time.
0 commit comments