Merge pull request #126 from phlip9/fix_ffi_bugs #181
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v4 | |
- uses: actions/[email protected] | |
with: | |
java-version: 11 | |
distribution: temurin | |
# Setup the flutter environment. | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: "stable" | |
cache: true | |
# Setup the melos environment. | |
- uses: bluefireteam/melos-action@v3 | |
- name: Install dependencies | |
run: melos bootstrap | |
- name: Verify formatting | |
run: dart format . | |
- name: Analyze project source | |
run: dart analyze | |
# - name: Run tests | |
# run: dart test |