File tree Expand file tree Collapse file tree 7 files changed +61
-83
lines changed Expand file tree Collapse file tree 7 files changed +61
-83
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ charset = utf-8
77trim_trailing_whitespace = true
88insert_final_newline = true
99
10- [* .{yaml,yml} ]
10+ [* .{md, yaml,yml} ]
1111indent_style = space
1212indent_size = 2
1313quote_type = single
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : ' Lint'
2+
3+ on :
4+ push :
5+ branches-ignore : ['*-no-ci']
6+ tags-ignore : ['*']
7+
8+ permissions :
9+ contents : ' read'
10+ pages : ' write'
11+ id-token : ' write'
12+
13+ jobs :
14+ bash :
15+ name : ' Bash'
16+ uses : ' fox-land/hyperupcall-action/.github/workflows/bash-lint.yml@main'
Original file line number Diff line number Diff line change 1+ name : ' Test'
2+
3+ on :
4+ push :
5+ branches-ignore : ['*-no-ci']
6+ tags-ignore : ['*']
7+
8+ permissions :
9+ contents : ' read'
10+ pages : ' write'
11+ id-token : ' write'
12+
13+ jobs :
14+ bash :
15+ name : ' Bash'
16+ uses : ' fox-land/hyperupcall-action/.github/workflows/bash-test.yml@main'
Original file line number Diff line number Diff line change 1+ name : ' Website'
2+
3+ on :
4+ push :
5+ branches-ignore : ['*-no-ci']
6+ tags-ignore : ['*']
7+
8+ permissions :
9+ contents : ' read'
10+ pages : ' write'
11+ id-token : ' write'
12+
13+ jobs :
14+ build-and-deploy :
15+ name : ' Build And Deploy'
16+ uses : ' fox-land/hyperupcall-action/.github/workflows/website.yml@main'
Original file line number Diff line number Diff line change 11disable =SC1090
22disable =SC1091
3+ disable =SC2034
4+ disable =SC2031
5+ disable =SC2030
6+ disable =SC2178
7+ disable =SC2154
8+ disable =SC2153
9+ disable =SC2154
10+ disable =SC2164
11+ disable =SC2154
12+ disable =SC1007
Original file line number Diff line number Diff line change @@ -39,10 +39,12 @@ load './util/init.sh'
3939 bobject set-string --ref ' OBJECT' ' .obj' str
4040
4141 bobject get-string --value ' OBJECT' ' .obj'
42+ # shellcheck disable=SC2128
4243 assert [ " $REPLY " = woof ]
4344
4445 REPLY=' meow'
4546
4647 bobject get-string --value ' OBJECT' ' .obj'
48+ # shellcheck disable=SC2128
4749 assert [ " $REPLY " = woof ]
4850}
You can’t perform that action at this time.
0 commit comments