mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-02 05:04:08 +08:00
22 lines
412 B
YAML
22 lines
412 B
YAML
name: Change Indicator
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
|
|
jobs:
|
|
unit_tests:
|
|
runs-on: ubuntu-latest
|
|
container: px4io/px4-dev-base-bionic:2020-01-13
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: main test
|
|
run: make test
|
|
- name: Check if there exists diff
|
|
run: git diff --exit-code
|
|
working-directory: test/change_indication
|