Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
tags: true
fetch-depth: 0

- name: Install pip
- name: Install pip and pipx
run: sudo apt-get install -y python3-pip pipx

- name: Check style
Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,15 @@ pip3 install -r requirements-docs.txt
make -C mavsdk html
```

### Formatting checks before committing

We use the following checks in [CI](.github/workflows/main.yml):

```
pipx run ruff format --check --line-length=100 examples
pipx run ruff check --select=ASYNC,RUF006,E,F --line-length=100 examples
pipx run codespell .
```

### Release steps

Expand Down
Loading