mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-10 18:33:19 +00:00
34 lines
522 B
YAML
34 lines
522 B
YAML
name: ubuntu
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: make
|
|
run: make
|
|
- name: install check
|
|
run: sudo apt install check
|
|
- name: run tests
|
|
run: make test
|
|
|
|
build-android:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: nttld/setup-ndk@v1
|
|
with:
|
|
ndk-version: r21e
|
|
- name: make
|
|
run: make cross-android
|