From 824c6c2599768bf0c06642f0affb90f5aaaff909 Mon Sep 17 00:00:00 2001 From: Luke Simmons Date: Mon, 12 Jul 2021 16:36:00 -0500 Subject: Create build.yml Automatically build project on every push, pull request, and on demand and uploads build artifacts. Signed-off-by: Luke Simmons --- .github/workflows/build.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/build.yml (limited to '.github/workflows') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..be209dbe --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,33 @@ +name: Build + +on: + push: + pull_request: + workflow_dispatch: + +jobs: + Build: + runs-on: ubuntu-latest + + steps: + - name: Checkout Repository + uses: actions/checkout@v2 + + - name: Set-up JDK 8 + uses: actions/setup-java@v2 + with: + java-version: '8' + distribution: 'adopt' + + - name: Grant Execute Permission for gradlew + run: chmod +x gradlew + + - name: Build with Gradle + run: ./gradlew build -x lint + + - name: Upload apk + uses: actions/upload-artifact@v2 + with: + name: Infinity-${{github.sha}} + path: app/build/outputs/apk/ + if-no-files-found: error -- cgit v1.2.3 From 7e04f30b02f6f134ae65feddadf0b0b831322fcb Mon Sep 17 00:00:00 2001 From: Luke Simmons Date: Tue, 13 Jul 2021 00:05:08 -0500 Subject: Create codeql-analysis.yml Automatically scans code for vulnerabilities on every push to master, pull request, on demand, and at 12:00 UTC every day. Fix Signed-off-by: Luke Simmons --- .github/workflows/codeql-analysis.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/codeql-analysis.yml (limited to '.github/workflows') diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml new file mode 100644 index 00000000..f4dc0ba2 --- /dev/null +++ b/.github/workflows/codeql-analysis.yml @@ -0,0 +1,33 @@ +name: CodeQL + +on: + push: + branches: master + pull_request: + workflow_dispatch: + schedule: + - cron: '0 12 * * *' + +jobs: + Analyze: + runs-on: ubuntu-latest + + permissions: + actions: read + contents: read + security-events: write + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Initialize CodeQL + uses: github/codeql-action/init@v1 + with: + languages: java + + - name: Autobuild + uses: github/codeql-action/autobuild@v1 + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v1 -- cgit v1.2.3