mirror of
https://github.com/jagandeepbrar/lunasea.git
synced 2026-08-31 04:32:32 +00:00
28 lines
587 B
YAML
28 lines
587 B
YAML
name: Validate
|
|
|
|
on:
|
|
workflow_call:
|
|
secrets:
|
|
FIREBASE_TOKEN:
|
|
required: true
|
|
|
|
jobs:
|
|
analyze:
|
|
name: Analyze
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Setup Environment
|
|
uses: JagandeepBrar/LunaSea/.github/actions/prepare_for_build@master
|
|
with:
|
|
firebase-token: ${{ secrets.FIREBASE_TOKEN }}
|
|
platform: test
|
|
|
|
- name: Analyze Release
|
|
uses: invertase/github-action-dart-analyzer@v1
|
|
with:
|
|
fatal-infos: false
|
|
fatal-warnings: true
|
|
|
|
- name: Test Release
|
|
run: flutter test
|