We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56a74fa commit f427b3cCopy full SHA for f427b3c
.github/workflows/build.yml
@@ -24,13 +24,17 @@ jobs:
24
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
25
- uses: actions/checkout@v2
26
# Java environment.
27
- - uses: actions/setup-java@v1
+ - uses: actions/setup-java@v3
28
with:
29
+ distribution: 'zulu'
30
java-version: '12.x'
31
+ cache: 'gradle'
32
# Setup the flutter environment.
- - uses: subosito/flutter-action@v1
33
+ - uses: subosito/flutter-action@v2
34
35
+ flutter-version: "3.3.2"
36
channel: 'stable'
37
+ cache: true
38
# Get flutter dependencies.
39
- run: flutter pub get
40
# Check for any formatting issues in the code.
0 commit comments