Skip to content

Merge pull request #33 from andreped/andreped-patch-2 #53

Merge pull request #33 from andreped/andreped-patch-2

Merge pull request #33 from andreped/andreped-patch-2 #53

Workflow file for this run

name: Test Flutter
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.7.0'
- name: Install dependencies
run: cd sw_app/ && flutter pub get
# Consider passing '--fatal-infos' for slightly stricter analysis.
- name: Analyze project source
run: cd sw_app/ && flutter doctor
# flutter analyze
# Your project will need to have tests in test/ and a dependency on
# package:test for this step to succeed. Note that Flutter projects will
# want to change this to 'flutter test'.
#- name: Run tests
# run: cd sw_app/ && flutter test