Skip to content

Adding Setting options for Extended Content and Alpha/Beta rules #1055

Adding Setting options for Extended Content and Alpha/Beta rules

Adding Setting options for Extended Content and Alpha/Beta rules #1055

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
unit-test:
name: Unit tests on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
# Set up Flutter.
- name: Clone Flutter repository with master channel
uses: subosito/flutter-action@v2
with:
channel: stable
- run: flutter doctor -v
# Checkout code and get packages.
- name: Checkout code
uses: actions/checkout@v4
- run: flutter --version
- run: flutter pub get
# Analyze, check formatting, and run unit tests.
- run: flutter analyze
- name: Ensure the Dart code is formatted correctly
run: dart format --set-exit-if-changed .
- name: Run Flutter unit tests
run: flutter test