ekf2: mag control reset filtered test ratio on start (if aligning yaw) #63
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python CI Checks | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
token: ${{ secrets.ACCESS_TOKEN }} | |
- name: Install Python3 | |
run: sudo apt-get install python3 python3-setuptools python3-pip -y | |
- name: Install tools | |
run: pip3 install --user mypy types-requests flake8 | |
- name: Check MAVSDK test scripts with mypy | |
run: $HOME/.local/bin/mypy --strict test/mavsdk_tests/*.py | |
- name: Check MAVSDK test scripts with flake8 | |
run: $HOME/.local/bin/flake8 test/mavsdk_tests/*.py |