mirror of
https://github.com/emanuele-f/PCAPdroid.git
synced 2026-06-19 21:05:25 +08:00
17 lines
334 B
YAML
17 lines
334 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@v2
|
|
with:
|
|
submodules: 'recursive'
|
|
- uses: actions/setup-java@v1
|
|
with:
|
|
java-version: '17'
|
|
- run: ./gradlew.bat assembleDebug
|