Skip to content

test

test #2

## name of your github action
name: Flutter Unit Testing Action
## when will the action trigger
on:
pull_request:
push:
branches:
- main
- development
- release/*
- feature/*
## the action script
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version: 3.35.2
- run: flutter --version
- name: Install packages
run: flutter pub get
- name: Run generator
run: flutter pub run build_runner build --delete-conflicting-outputs
- name: Run test
run: flutter test test