Skip to content

chore: Enable flutter's native auto publishing based on github tags. #253

chore: Enable flutter's native auto publishing based on github tags.

chore: Enable flutter's native auto publishing based on github tags. #253

Workflow file for this run

name: Flutter SDK Unit Tests
# Leverages the Flutter GH Action at https://github.com/marketplace/actions/flutter-action
on:
pull_request:
branches: [main]
jobs:
build:
name: Unit Test
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v4
- name: Install and set Flutter version
uses: subosito/flutter-action@v2
with:
flutter-version: '3.x'
channel: 'stable'
- name: Install Flutter packages
run: flutter pub get
- name: Analyze
run: flutter analyze
- name: Run Unit Tests
run: flutter test
- name: Run Publish Dry Run
run: flutter pub publish --dry-run