Skip to content

Reintegrate drone_models and drone_controllers into crazyflow #578

Reintegrate drone_models and drone_controllers into crazyflow

Reintegrate drone_models and drone_controllers into crazyflow #578

Workflow file for this run

name: Testing
on:
push:
branches: [main]
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install submodules
run: git submodule update --init --recursive
- name: Setup Pixi
uses: prefix-dev/setup-pixi@v0.9.3
with:
pixi-version: v0.70.0
cache: true
cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
environments: tests
activate-environment: false
locked: true
- name: Verify pixi and run tests
run: |
pixi --version
pixi run -e tests tests
test-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install submodules
run: git submodule update --init --recursive
- name: Setup Pixi
uses: prefix-dev/setup-pixi@v0.9.3
with:
pixi-version: v0.70.0
cache: true
cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
environments: tests
activate-environment: false
locked: true
- name: Run doc tests
run: pixi run -e tests test-docs