Skip to content

Add key press for SHIFT + TAB (Resolves #30) #30

Add key press for SHIFT + TAB (Resolves #30)

Add key press for SHIFT + TAB (Resolves #30) #30

Workflow file for this run

name: Validate pull requests
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./
steps:
# Checkout the PR branch
- uses: actions/checkout@v3
# Setup Flutter environment
- uses: subosito/flutter-action@v2
with:
channel: "stable"
architecture: x64
# Download all the packages that the app uses
- run: flutter pub get
# Enforce lint rules
- run: flutter analyze
# Run all tests
- run: flutter test
build-website:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./doc/website
steps:
# Checkout the repository
- uses: actions/checkout@v3
# Setup a Dart environment
- uses: dart-lang/setup-dart@v1
# Download all the packages that the app uses
- run: dart pub get
# Build the static site
- run: dart run bin/flutter_test_robots_docs.dart
env:
GHUB_DOC_WEBSITE_TOKEN: ${{ vars.GHUB_DOC_WEBSITE_TOKEN }}