mirror of
https://github.com/emanuele-f/PCAPdroid.git
synced 2026-06-11 21:01:45 +08:00
15 lines
283 B
YAML
15 lines
283 B
YAML
name: Test native code
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: 'recursive'
|
|
- name: Run native tests
|
|
working-directory: ./app/src/main/jni/tests
|
|
run: make run_tests
|