mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-17 20:57:36 +08:00
aaf033044d
This still captures all commits, but does not cover the merged state of the PR. All PRs need to be up-to-date before merging/rebasing, which is better practice anyway.
17 lines
295 B
YAML
17 lines
295 B
YAML
name: Build Tests
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container: px4io/px4-dev-base-bionic:2019-10-24
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: check_format
|
|
env:
|
|
CI: true
|
|
run: make check_format
|
|
- name: main tests
|
|
run: make tests
|