Skip to content

set homepage in pubspec.yaml #2

set homepage in pubspec.yaml

set homepage in pubspec.yaml #2

Workflow file for this run

name: Analyze & Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Install dependencies
run: flutter pub get
- name: Analyze project source
run: flutter analyze
# No test for now
- name: Run tests
run: flutter test