Skip to content

Commit

Permalink
Configurazione build automation
Browse files Browse the repository at this point in the history
  • Loading branch information
darckat038 authored May 17, 2024
1 parent 264b8ea commit baf2451
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/BuildA.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Build Automation
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 1.8
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 8.0.332+9
cache: 'maven'
- name: Build with Maven
run: mvn -B clean package

0 comments on commit baf2451

Please sign in to comment.