Skip to content

Update dependencies #18

Update dependencies

Update dependencies #18

Workflow file for this run

name: Flutter CI
# This workflow is triggered on pushes to the repository.
on:
push:
branches:
- main
jobs:
build:
# This job will run on ubuntu virtual machine
runs-on: ubuntu-latest
steps:
# Setup Java environment in order to build the Android app.
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
java-version: 11
distribution: temurin
# Setup the flutter environment.
- uses: subosito/flutter-action@v2
with:
channel: "stable"
cache: true
- name: Install dependencies
run: flutter pub get
- name: Verify formatting
run: flutter format .
- name: Analyze project source
run: flutter analyze
- name: Run tests
run: flutter test