mirror of
https://github.com/emanuele-f/PCAPdroid.git
synced 2026-07-03 21:21:12 +08:00
* Update debug-build.yml * Update gradle-wrapper-validation.yml * Update gradle-wrapper-validation.yml * Update native-tests.yml * Update windows-build.yml
20 lines
384 B
YAML
20 lines
384 B
YAML
name: Windows build
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: windows-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.bat assembleDebug
|