Skip to content

Commit 93e2486

Browse files
authored
Merge pull request #16 from bash-bastion/hyperupcall-ci-fix
2 parents 1502270 + f0e0481 commit 93e2486

File tree

7 files changed

+61
-83
lines changed

7 files changed

+61
-83
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ charset = utf-8
77
trim_trailing_whitespace = true
88
insert_final_newline = true
99

10-
[*.{yaml,yml}]
10+
[*.{md,yaml,yml}]
1111
indent_style = space
1212
indent_size = 2
1313
quote_type = single

.github/workflows/ci.yaml

Lines changed: 0 additions & 82 deletions
This file was deleted.

.github/workflows/lint.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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'

.github/workflows/test.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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'

.github/workflows/website.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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'

.shellcheckrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,12 @@
11
disable=SC1090
22
disable=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

tests/get-value.bats

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)