mirror of
https://github.com/emanuele-f/PCAPdroid.git
synced 2026-06-19 21:05:25 +08:00
* Update debug-build.yml * Update gradle-wrapper-validation.yml * Update gradle-wrapper-validation.yml * Update native-tests.yml * Update windows-build.yml
21 lines
419 B
YAML
21 lines
419 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@v4
|
|
with:
|
|
submodules: 'recursive'
|
|
|
|
- uses: actions/setup-java@v4
|
|
with:
|
|
java-version: '17'
|
|
distribution: 'temurin'
|
|
|
|
- run: ./gradlew test
|
|
- run: ./gradlew assembleDebug -PdoNotStrip
|