fix(mavlink): declare INJECT_FAILURE param4 (instance bitmask) in command param validation #42534
Workflow file for this run
This file contains hidden or 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' | |
| paths-ignore: | |
| - 'docs/**' | |
| pull_request: | |
| branches: | |
| - '**' | |
| paths-ignore: | |
| - 'docs/**' | |
| jobs: | |
| build: | |
| runs-on: [runs-on,runner=1cpu-linux-x64,image=ubuntu24-full-x64,"run-id=${{ github.run_id }}"] | |
| steps: | |
| - uses: runs-on/action@v2 | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 1 | |
| - name: Setup Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.10" | |
| - name: Install tools | |
| run: pip install mypy types-requests flake8 | |
| - name: Check MAVSDK test scripts with mypy | |
| run: mypy --strict test/mavsdk_tests/*.py | |
| - name: Check MAVSDK test scripts with flake8 | |
| run: flake8 test/mavsdk_tests/*.py |