Skip to content

updated package structure #3

updated package structure

updated package structure #3

Workflow file for this run

name: Java CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
env:
working-directory: "./Path Manipulation/Path Manipulation while File Upload/java"
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- name: Build with Maven
working-directory: ${{ env.working-directory }}
run: mvn clean -B package --file pom.xml
# - name: Run tests
# run: mvn test