mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-21 09:22:18 +00:00
Add access token to build_tests.yml This is necessary to enable GH Actions for downstream adopters. This also enables the explicit submodule checkout.
20 lines
375 B
YAML
20 lines
375 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
|
|
with:
|
|
token: ${{ secrets.ACCESS_TOKEN }}
|
|
submodules: true
|
|
- name: check_format
|
|
env:
|
|
CI: true
|
|
run: make check_format
|
|
- name: main tests
|
|
run: make tests
|