mirror of
https://github.com/emanuele-f/PCAPdroid.git
synced 2026-07-12 21:24:46 +08:00
20 lines
392 B
YAML
20 lines
392 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 assembleStandardDebug
|