mirror of
https://github.com/emanuele-f/PCAPdroid.git
synced 2026-06-11 21:01:45 +08:00
18 lines
369 B
YAML
18 lines
369 B
YAML
name: Debug build
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
if: github.ref != 'refs/heads/playstore'
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: 'recursive'
|
|
- uses: actions/setup-java@v1
|
|
with:
|
|
java-version: '11'
|
|
- run: ./gradlew test
|
|
- run: ./gradlew assembleDebug -PdoNotStrip
|