Skip to content

[RSDK-4265] Widgets #196

[RSDK-4265] Widgets

[RSDK-4265] Widgets #196

Workflow file for this run

name: Test
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: "stable"
- run: flutter --version
- run: flutter pub get
- run: flutter pub get --directory=example/viam_example_app
# Verify formatting in all dart files, except lib/gen/
- name: Verify formatting
run: make format
- name: Analyze project source
run: make analyze
- name: Run tests
run: make test