Skip to content

chore: code cleanup and dart fix run #23

chore: code cleanup and dart fix run

chore: code cleanup and dart fix run #23

Workflow file for this run

name: post-merge
on:
push:
branches:
- 'main'
env:
IS_CI: true
jobs:
post-merge-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
flutter-version: [ '3.22.3', '3.24.3' ]
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.flutter-version }}
channel: 'stable'
cache: true
- name: Install Dependencies
run: flutter packages get
- name: Disable animations
run: flutter config --no-cli-animations
- name: Run tests
run: |
flutter test --no-pub --coverage --test-randomize-ordering-seed=random