File tree 3 files changed +33
-0
lines changed
3 files changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Ruff
2
+ on : [ push, pull_request ]
3
+ jobs :
4
+ ruff :
5
+ runs-on : ubuntu-latest
6
+ steps :
7
+ - uses : actions/checkout@v4
8
+ - uses : astral-sh/ruff-action@v1
Original file line number Diff line number Diff line change
1
+ name : Testing
2
+
3
+ on : [push]
4
+
5
+ jobs :
6
+ test :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - uses : actions/checkout@v4
10
+ - uses : actions/setup-python@v5
11
+ with :
12
+ python-version : ' 3.8'
13
+ cache : ' pip'
14
+ architecture : ' x64'
15
+ - name : Install dependencies
16
+ run : pip install .
17
+ - name : Test with pytest
18
+ run : |
19
+ pip install pytest pytest-cov
20
+ pytest tests.py --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html
21
+
Original file line number Diff line number Diff line change 1
1
# Autonomous Drone Racing Project Course
2
2
![ ADR Banner] ( docs/img/banner.jpeg )
3
3
<sub ><sup >AI generated image</sup ></sub >
4
+ [ ![ Ruff Check] ( https://github.com/utiasDSL/lsy_drone_racing/actions/workflows/ruff.yml/badge.svg )] ( https://github.com/utiasDSL/lsy_drone_racing/actions/workflows/ruff.yml ) [ ![ Documentation Status] ( https://readthedocs.org/projects/lsy-drone-racing/badge/?version=latest&style=flat-square )] ( https://lsy-drone-racing.readthedocs.io/en/latest/?badge=latest )
4
5
5
6
## Table of Contents
6
7
- [ Autonomous Drone Racing Project Course] ( #autonomous-drone-racing-project-course )
7
8
- [ Table of Contents] ( #table-of-contents )
9
+ - [ Documentation] ( #documentation )
8
10
- [ Installation] ( #installation )
9
11
- [ Fork lsy\_ drone\_ racing] ( #fork-lsy_drone_racing )
10
12
- [ Using conda/mamba] ( #using-condamamba )
28
30
- [ Launch] ( #launch )
29
31
30
32
33
+ ## Documentation
34
+ To get you started with the drone racing project, you can head over to our [ documentation page] ( https://lsy-drone-racing.readthedocs.io/en/latest/getting_started/general.html ) .
31
35
32
36
## Installation
33
37
You can’t perform that action at this time.
0 commit comments