We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6abbbc commit 03dc4f4Copy full SHA for 03dc4f4
.github/workflows/main.yml
@@ -11,6 +11,24 @@ on:
11
- '*'
12
13
jobs:
14
+ pytest:
15
+ strategy:
16
+ fail-fast: false
17
+ matrix:
18
+ os: [ubuntu-latest] # [macos-latest, ubuntu-latest, windows-latest]
19
+ python: ['3.9', '3.x']
20
+ runs-on: ${{ matrix.os }}
21
+ steps:
22
+ - uses: actions/checkout@v4
23
+ with:
24
+ submodules: recursive
25
+ fetch-depth: 0
26
+ - uses: actions/setup-python@v5
27
28
+ python-version: ${{ matrix.python }}
29
+ - run: pip install --upgrade pip
30
+ - run: pip install pytest-cov -r requirements.txt -r requirements-dev.txt
31
+ - run: pytest --cov=mavsdk
32
ubuntu22:
33
name: Ubuntu 22.04 x86_64
34
runs-on: ubuntu-22.04
0 commit comments