Skip to content

Merge branch 'oxyfalcon-patch-1' of https://github.com/oxyfalcon/fire… #3

Merge branch 'oxyfalcon-patch-1' of https://github.com/oxyfalcon/fire…

Merge branch 'oxyfalcon-patch-1' of https://github.com/oxyfalcon/fire… #3

Workflow file for this run

name: Execute Tests on PR
on:
push:
pull_request:
branches: [main]
jobs:
runUnitTest:
name: Execute Unit/Widget tests
runs-on: macos-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup Flutter SDK
uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Lint
run: dart format --output=none --set-exit-if-changed .
- name: Pub Upgrade
run: flutter pub upgrade
# - name: Run Unit Tests / Widget Tests
# run: flutter test