Skip to content

Commit 10050b7

Browse files
committed
lint
1 parent bcd5c20 commit 10050b7

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/test.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ jobs:
1616
- name: Install all
1717
run: sh ./install.sh
1818
- name: Test Neovim
19-
run: nu -c "vi --version | find 'NVIM v0.11' | get 0"
19+
run: |
20+
nu -c "vi --version"
21+
nu -c "vi --version | find 'NVIM v0.11' | get 0"
2022
docker:
2123
name: Docker build
2224
runs-on: ubuntu-latest

install.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,11 +126,11 @@ starship() {
126126

127127
# Default to running all if no args are given
128128
if [ "$#" -eq 0 ]; then
129-
set -- all
129+
set -- all
130130
fi
131131

132132
while (("$#")) ; do
133-
echo "Running $1"
134-
$1
135-
shift
133+
echo "Running $1"
134+
$1
135+
shift
136136
done

0 commit comments

Comments
 (0)