We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 72cc8e0 + 8b23e6b commit 1f14aabCopy full SHA for 1f14aab
.github/workflows/workflow.yml
@@ -34,7 +34,11 @@ jobs:
34
uses: asdf-vm/actions/setup@v1
35
36
- name: Install bats-core
37
- run: brew install bats-core
+ run: |
38
+ sudo add-apt-repository universe
39
+ sudo apt-get update
40
+ sudo apt install bats
41
+
42
43
- name: Test plugin
44
run: |
@@ -51,7 +55,10 @@ jobs:
51
55
uses: actions/checkout@v3
52
56
53
57
- name: Install ShellCheck
54
- run: brew install shellcheck
58
59
60
61
+ sudo apt install shellcheck
62
63
- name: Run ShellCheck
64
run: make lint
@@ -64,7 +71,7 @@ jobs:
71
65
72
66
73
- name: Install shfmt
67
- run: brew install shfmt
74
+ run: curl -sS https://webi.sh/shfmt | sh
68
75
69
76
- name: Run shfmt
70
77
run: make fmt-check
0 commit comments