Skip to content

Commit dccc957

Browse files
committed
chore: move chore scripts to dir test/chore 🧹
1 parent 41064df commit dccc957

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
# https://docs.github.com/en/actions/learn-github-actions/variables#detecting-the-operating-system
2525
# https://docs.github.com/en/actions/learn-github-actions/expressions
2626
if: runner.os == 'macOS'
27-
- run: test/integration-test.sh
27+
- run: test/chore/integration-test.sh
2828
# https://remarkablemark.org/blog/2017/10/12/check-git-dirty/
2929
- name: Check git dirty
3030
run: |

.github/workflows/lint.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v4
1616
with:
1717
submodules: recursive
18-
- run: test/lint.sh
18+
- run: test/chore/lint.sh
1919
# https://remarkablemark.org/blog/2017/10/12/check-git-dirty/
2020
- name: Check git dirty
2121
run: |
File renamed without changes.

test/integration-test.sh renamed to test/chore/integration-test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ realpath() {
55
[ -e "$1" ] && command realpath -- "$1"
66
}
77

8-
cd "$(dirname -- "$(realpath "${BASH_SOURCE[0]}")")"
8+
cd "$(dirname -- "$(realpath "${BASH_SOURCE[0]}")")"/..
99

1010
################################################################################
1111
# common util functions

test/lint.sh renamed to test/chore/lint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ realpath() {
66
}
77

88
# cd to the root of the project
9-
cd "$(dirname -- "$(realpath "${BASH_SOURCE[0]}")")"/..
9+
cd "$(dirname -- "$(realpath "${BASH_SOURCE[0]}")")"/../..
1010

1111
find bin lib -type f |
1212
grep -Pv '/show-duplicate-java-classes$' |

0 commit comments

Comments
 (0)