From 1d12a54ec16a80dc018eb3d5a37fe83fdf0ae995 Mon Sep 17 00:00:00 2001 From: 4drian3d <68704415+4drian3d@users.noreply.github.com> Date: Sun, 2 May 2021 22:32:11 -0500 Subject: [PATCH] Added Comments --- .github/workflows/flamecord-build.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/flamecord-build.yml b/.github/workflows/flamecord-build.yml index 739247a..985299e 100644 --- a/.github/workflows/flamecord-build.yml +++ b/.github/workflows/flamecord-build.yml @@ -1,4 +1,9 @@ -name: Flamecord Maven Build +#This workflow will perform a compilation test +#on each pull request or push to the branch master +#to check its correct compilation and will deliver +#an artifact to check if the change is working properly. + +name: FlameCord Maven Build on: [push, pull_request] @@ -6,6 +11,9 @@ jobs: build: runs-on: ubuntu-latest + #The corresponding tests are performed in the versions + #marked as Long Term Support by Java and in its + #latest version up to the moment. strategy: matrix: java: [8, 11, 16] @@ -19,6 +27,7 @@ jobs: distribution: 'adopt' architecture: x64 + #The corresponding dependencies are stored in the cache to speed up the test. - name: Cache Maven packages uses: actions/cache@v2 with: @@ -32,6 +41,7 @@ jobs: git config --global user.name "Your Name" scripts/build.sh --jar + #An artifact is generated in a compressed file according to each JDK build version. - name: Upload Flamecord uses: actions/upload-artifact@v2 with: