Added Comments

This commit is contained in:
4drian3d 2021-05-02 22:32:11 -05:00 committed by GitHub
parent 69395de89d
commit 1d12a54ec1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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] on: [push, pull_request]
@ -6,6 +11,9 @@ jobs:
build: build:
runs-on: ubuntu-latest 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: strategy:
matrix: matrix:
java: [8, 11, 16] java: [8, 11, 16]
@ -19,6 +27,7 @@ jobs:
distribution: 'adopt' distribution: 'adopt'
architecture: x64 architecture: x64
#The corresponding dependencies are stored in the cache to speed up the test.
- name: Cache Maven packages - name: Cache Maven packages
uses: actions/cache@v2 uses: actions/cache@v2
with: with:
@ -32,6 +41,7 @@ jobs:
git config --global user.name "Your Name" git config --global user.name "Your Name"
scripts/build.sh --jar scripts/build.sh --jar
#An artifact is generated in a compressed file according to each JDK build version.
- name: Upload Flamecord - name: Upload Flamecord
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2
with: with: