Skip to content

refactor: move files of skill-tree folder to root #199

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
distribution: "temurin"

- name: Build with Maven
run: mvn verify --file skill-tree/pom.xml -P git-build-profile -Dskip-tests=true
run: mvn verify -P git-build-profile -Dskip-tests=true

unit-test:
name: Unit Tests
Expand All @@ -33,7 +33,7 @@ jobs:
distribution: "temurin"

- name: Unit Test
run: mvn test --file skill-tree/pom.xml
run: mvn test

integration-test:
name: Integration Tests
Expand All @@ -48,4 +48,4 @@ jobs:
distribution: "temurin"

- name: Integration Test
run: mvn verify --file skill-tree/pom.xml -Dskip-ut=true
run: mvn verify -Dskip-ut=true
2 changes: 1 addition & 1 deletion .github/workflows/deploy-to-ec2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: docker/build-push-action@v5
with:
context: .
file: skill-tree/Dockerfile
file: Dockerfile
platforms: linux/arm64
push: true
tags: |
Expand Down
2 changes: 1 addition & 1 deletion skill-tree/Dockerfile → Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM openjdk:17-jdk as build
WORKDIR /app
COPY skill-tree .
COPY . .
RUN ./mvnw --version
RUN ./mvnw clean install -DskipTests

Expand Down
File renamed without changes.
0 skill-tree/mvnw → mvnw
100755 → 100644
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file removed skill-tree/.mvn/wrapper/maven-wrapper.jar
Binary file not shown.