mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
23 lines
579 B
YAML
23 lines
579 B
YAML
name: SITL Tests (Code Coverage)
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container: px4io/px4-dev-simulation-bionic:2020-01-13
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
with:
|
|
token: ${{ secrets.ACCESS_TOKEN }}
|
|
- name: Install psutil
|
|
run: pip3 install psutil
|
|
# TODO: disabled 2019-01-09 due to failures
|
|
# - name: Run simulation tests
|
|
# run: make tests_integration_coverage
|
|
- name: Upload coverage to Codecov
|
|
uses: codecov/codecov-action@v1
|
|
with:
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
flags: mavsdk
|