mirror of
https://github.com/skylot/jadx.git
synced 2024-11-23 12:50:02 +00:00
build: setup simple test build using Github Actions
This commit is contained in:
parent
22fa132110
commit
913b00a4d4
21
.github/workflows/test-build.yml
vendored
Normal file
21
.github/workflows/test-build.yml
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
name: Test build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up JDK 1.8
|
||||
uses: actions/setup-java@v1
|
||||
with:
|
||||
java-version: 1.8
|
||||
- name: Grant execute permission for gradlew
|
||||
run: chmod +x gradlew
|
||||
- name: Build with Gradle
|
||||
run: ./gradlew clean build dist --warning-mode=all
|
Loading…
Reference in New Issue
Block a user