Skip to content

Update build.yml

Update build.yml #1

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
branches: [ "develop", "master" ]
pull_request:
branches: [ "develop", "master" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set Up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '2.8.0'
- name: Install Dependencies
run: flutter pub get
- name: Run Tests
run: flutter test