mirror of
https://github.com/Guardsquare/proguard.git
synced 2026-03-13 09:50:34 +08:00
With this change the stable ProGuard branch remains stable, independent of changes in ProGuardCORE. This avoids the stable branch of ProGuard failing if breaking changes are pushed to ProGuardCORE master branch.
24 lines
504 B
YAML
24 lines
504 B
YAML
name: Continuous Integration
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
push:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
path: proguard-main
|
|
- uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 8
|
|
- uses: eskatos/gradle-command-action@v1
|
|
with:
|
|
build-root-directory: proguard-main/
|
|
wrapper-directory: proguard-main/
|
|
arguments: test jar
|