mirror of
https://github.com/Guardsquare/proguard.git
synced 2026-03-13 09:50:34 +08:00
28 lines
664 B
YAML
28 lines
664 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/checkout@v2
|
|
with:
|
|
repository: Guardsquare/proguard-core
|
|
path: proguard-core
|
|
- 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: --include-build ../proguard-core/ test jar
|