Skip to content

Commit bcb6109

Browse files
author
TheSnoozer
committed
the run argument does not expect a sequence
1 parent 2f36b60 commit bcb6109

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

.github/workflows/default-tests.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -67,17 +67,13 @@ jobs:
6767
mvn -version;
6868
fi'
6969
- name: Package with Maven
70-
run:
71-
- mvn clean package -B
70+
run: mvn clean package -B
7271
- name: Install a test version with Maven
73-
run:
74-
- mvn clean test install -B
72+
run: mvn clean test install -B
7573
- name: Run the local testversion with Maven
76-
run:
77-
- mvn clean initialize -Pdemo -Dmaven.test.skip=true -B
74+
run: mvn clean initialize -Pdemo -Dmaven.test.skip=true -B
7875
- name: Validate if the testversion has produced the desired output
79-
run:
80-
- /bin/bash -c '[[ -f maven/target/testing.properties ]] && cat maven/target/testing.properties || exit 1;'
76+
run: /bin/bash -c '[[ -f maven/target/testing.properties ]] && cat maven/target/testing.properties || exit 1;'
8177

8278
coveralls:
8379
name: Run coveralls with java ${{ matrix.java_version }}

0 commit comments

Comments
 (0)