File tree 5 files changed +4
-4
lines changed
5 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 24
24
# https://docs.github.com/en/actions/learn-github-actions/variables#detecting-the-operating-system
25
25
# https://docs.github.com/en/actions/learn-github-actions/expressions
26
26
if : runner.os == 'macOS'
27
- - run : test/integration-test.sh
27
+ - run : test/chore/ integration-test.sh
28
28
# https://remarkablemark.org/blog/2017/10/12/check-git-dirty/
29
29
- name : Check git dirty
30
30
run : |
Original file line number Diff line number Diff line change 15
15
- uses : actions/checkout@v4
16
16
with :
17
17
submodules : recursive
18
- - run : test/lint.sh
18
+ - run : test/chore/ lint.sh
19
19
# https://remarkablemark.org/blog/2017/10/12/check-git-dirty/
20
20
- name : Check git dirty
21
21
run : |
File renamed without changes.
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ realpath() {
5
5
[ -e " $1 " ] && command realpath -- " $1 "
6
6
}
7
7
8
- cd " $( dirname -- " $( realpath " ${BASH_SOURCE[0]} " ) " ) "
8
+ cd " $( dirname -- " $( realpath " ${BASH_SOURCE[0]} " ) " ) " /..
9
9
10
10
# ###############################################################################
11
11
# common util functions
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ realpath() {
6
6
}
7
7
8
8
# cd to the root of the project
9
- cd " $( dirname -- " $( realpath " ${BASH_SOURCE[0]} " ) " ) " /..
9
+ cd " $( dirname -- " $( realpath " ${BASH_SOURCE[0]} " ) " ) " /../..
10
10
11
11
find bin lib -type f |
12
12
grep -Pv ' /show-duplicate-java-classes$' |
You can’t perform that action at this time.
0 commit comments