Skip to content

fix gnss height by updating dronecan submodule #63

fix gnss height by updating dronecan submodule

fix gnss height by updating dronecan submodule #63

Workflow file for this run

name: Pylint
on: [push]
jobs:
pylint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install virtualenv and pylint
run: |
python -m pip install virtualenv
python -m venv venv
source ./venv/bin/activate
pip install pylint autopilot-tools
- name: Analyzing the code with pylint
run: |
source ./venv/bin/activate
pylint scripts/sim.py