You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
412 B
21 lines
412 B
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
|
|
|