Skip to content

Merge pull request #36 from LiteraLand-C07/collections #58

Merge pull request #36 from LiteraLand-C07/collections

Merge pull request #36 from LiteraLand-C07/collections #58

Workflow file for this run

name: Dev
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the develop branch
push:
branches: [dev]
pull_request:
branches: [dev]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
name: Analyze
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11'
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Get packages
run: flutter pub get
- name: Analyze
run: flutter analyze