Skip to content

Commit f6c694d

Browse files
Minor changes
1 parent b42b3d4 commit f6c694d

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/exercise_1.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ jobs:
3131
distribution: 'temurin'
3232
cache: maven
3333

34-
- name: Run and build
34+
- name: Compile Project
35+
run: mvn compile
36+
37+
- name: Run Project
3538
run: sh scripts/build_n_run.sh exercise1
3639
shell: bash

scripts/build_n_run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#! /usr/bin/bash
22
rm -r target | echo "No target directory found"
3-
mvn compile
3+
# mvn compile
44
mvn exec:java -Dexec.mainClass=Main -Dexec.args="$1"

0 commit comments

Comments
 (0)