Skip to content

Update issue templates #23

Update issue templates

Update issue templates #23

Workflow file for this run

name: Java CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Install Ant
run: sudo apt-get install -y ant
- name: Build with Ant
run: ant -f proyecto/java_microservice/build.xml
- name: Upload Build Artifacts
uses: actions/upload-artifact@v3
with:
name: build-artifacts
path: proyecto/java_microservice/build/classes # Adjust this to the path of your build output