From d1754b78a7db3c60a1c6d86bddf0f9029a349c4e Mon Sep 17 00:00:00 2001 From: Antonio Musarra Date: Tue, 16 Apr 2024 10:28:04 +0200 Subject: [PATCH] Aggiunta GitHub action per la build Maven --- .github/workflow/build-via-maven.yml | 35 ++++++++++++++++++++++++++++ CHANGELOG.md | 1 + 2 files changed, 36 insertions(+) create mode 100644 .github/workflow/build-via-maven.yml diff --git a/.github/workflow/build-via-maven.yml b/.github/workflow/build-via-maven.yml new file mode 100644 index 0000000..d2bf8ae --- /dev/null +++ b/.github/workflow/build-via-maven.yml @@ -0,0 +1,35 @@ +# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven + +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +name: Build with Maven + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Set up JDK 21 + uses: actions/setup-java@v3 + with: + java-version: '21' + distribution: 'corretto' + cache: maven + - name: Build with Maven + run: mvn -B package --file pom.xml + + # Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive + - name: Update dependency graph + uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6 diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a6f200..c5f2cba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - This CHANGELOG file to hopefully serve as an evolving example of a standardized open source project CHANGELOG. - Guidelines for contributing to this repository. +- GitHub Actions for Continuous Integration (CI) and Continuous Deployment (CD). ### Changed