2022-10-25 19:59:56 +00:00
|
|
|
# This workflow uses actions that are not certified by GitHub.
|
|
|
|
# They are provided by a third-party and are governed by
|
|
|
|
# separate terms of service, privacy policy, and support
|
|
|
|
# documentation.
|
|
|
|
|
2023-05-04 13:44:00 +00:00
|
|
|
name: PR check
|
2022-10-25 19:59:56 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2023-03-30 19:24:18 +00:00
|
|
|
branches: ["main"]
|
2022-10-25 19:59:56 +00:00
|
|
|
pull_request:
|
2023-03-30 19:24:18 +00:00
|
|
|
branches: ["main"]
|
2022-10-25 19:59:56 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2023-03-30 19:24:18 +00:00
|
|
|
runs-on: macos-11
|
2023-05-03 10:45:10 +00:00
|
|
|
timeout-minutes: 10
|
2022-10-25 19:59:56 +00:00
|
|
|
|
|
|
|
steps:
|
2023-03-30 19:24:18 +00:00
|
|
|
- uses: shaunco/ssh-agent@git-repo-mapping
|
|
|
|
with:
|
|
|
|
ssh-private-key: |
|
|
|
|
${{ secrets.M3_LIGHTMETER_IAP_KEY }}
|
|
|
|
repo-mappings: |
|
|
|
|
github.com/vodemn/m3_lightmeter_iap
|
|
|
|
|
2022-10-25 19:59:56 +00:00
|
|
|
- uses: actions/checkout@v3
|
2023-03-30 19:24:18 +00:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
|
2022-10-25 20:03:06 +00:00
|
|
|
- uses: subosito/flutter-action@v2
|
|
|
|
with:
|
|
|
|
channel: "stable"
|
2023-03-30 19:24:18 +00:00
|
|
|
|
2022-12-05 18:56:17 +00:00
|
|
|
- name: Check flutter version
|
|
|
|
run: flutter --version
|
2022-10-25 19:59:56 +00:00
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: flutter pub get
|
|
|
|
|
2022-12-05 18:56:17 +00:00
|
|
|
- name: Generate intl
|
|
|
|
run: flutter pub run intl_utils:generate
|
2022-10-25 19:59:56 +00:00
|
|
|
|
2023-05-03 10:45:10 +00:00
|
|
|
- name: Restore firebase_options.dart
|
|
|
|
env:
|
|
|
|
FIREBASE_OPTIONS: ${{ secrets.FIREBASE_OPTIONS }}
|
|
|
|
run: |
|
|
|
|
FIREBASE_OPTIONS_PATH=$RUNNER_TEMP/firebase_options.dart
|
|
|
|
echo -n "$FIREBASE_OPTIONS" | base64 --decode --output $FIREBASE_OPTIONS_PATH
|
|
|
|
cp $FIREBASE_OPTIONS_PATH ./lib
|
|
|
|
|
2022-10-25 19:59:56 +00:00
|
|
|
- name: Analyze project source
|
2023-02-15 14:34:28 +00:00
|
|
|
run: flutter analyze lib --fatal-infos
|