CI: Add java version
This commit is contained in:
parent
f9273f43e1
commit
1308400bb6
1 changed files with 5 additions and 4 deletions
9
.github/workflows/analyze.yaml
vendored
9
.github/workflows/analyze.yaml
vendored
|
|
@ -4,16 +4,17 @@ on: [push, pull_request]
|
||||||
|
|
||||||
env:
|
env:
|
||||||
FLUTTER_VERSION: '3.10.6'
|
FLUTTER_VERSION: '3.10.6'
|
||||||
|
JAVA_VERSION: '11.0'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
analyze:
|
analyze:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-java@v2
|
- uses: actions/setup-java@v1
|
||||||
with:
|
with:
|
||||||
distribution: 'adopt'
|
java-version: ${{ env.JAVA_VERSION }}
|
||||||
- uses: subosito/flutter-action@v1
|
- uses: subosito/flutter-action@v2
|
||||||
with:
|
with:
|
||||||
flutter-version: ${{ env.FLUTTER_VERSION }}
|
flutter-version: ${{ env.FLUTTER_VERSION }}
|
||||||
- run: flutter pub get
|
- run: flutter pub get
|
||||||
|
|
@ -25,4 +26,4 @@ jobs:
|
||||||
- name: Apply google services patch
|
- name: Apply google services patch
|
||||||
run: git apply ./scripts/enable-android-google-services.patch
|
run: git apply ./scripts/enable-android-google-services.patch
|
||||||
- run: flutter analyze
|
- run: flutter analyze
|
||||||
|
- run: flutter test
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue