Merge branch 'main' of https://github.com/Simbotics/Scouting-Platform… #127
This file contains hidden or 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: Analyze Flutter App | |
# This workflow is triggered on pushes to the repository. | |
on: [push] | |
# on: push # Default will running for every branch. | |
jobs: | |
build: | |
# This job will run on ubuntu virtual machine | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
cache: true | |
cache-key: "flutter-:os:-:channel:-:version:-:arch:-:hash:" | |
cache-path: "${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:" | |
pub-cache-key: "flutter-pub:os:-:channel:-:version:-:arch:-:hash:" | |
pub-cache-path: "${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:" | |
- run: flutter --version | |
# Get flutter dependencies. | |
- run: flutter pub get | |
# Check for any formatting issues in the code. | |
- run: dart format . | |
# Statically analyze the Dart code for any errors. | |
- run: flutter analyze . | |
# Run widget tests for our flutter project. | |
# - run: flutter test | |
# Build apk suited for scouting tablets. | |
# - run: flutter build appbundle --target-platform android-arm | |
# Upload generated apk to artifacts for the current action. | |
# - uses: actions/upload-artifact@v1 | |
# with: | |
# name: release-apk | |
# path: build/app/outputs/apk/release/app-release.apk |