Updated the null check condition on taskserver page #307
This file contains 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: Flutter CI | |
on: | |
push: | |
branches: | |
- main | |
- reports | |
pull_request: | |
branches: | |
- main | |
- reports | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# Step 1: Checkout the repository | |
- uses: actions/checkout@v2 | |
# Step 2: Setup Java with version 12.x | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: '12.x' | |
# Step 3: Setup Flutter with version 3.7.11 | |
- uses: subosito/flutter-action@v1 | |
with: | |
flutter-version: '3.16.4' | |
# Step 4: Get dependencies using pub get | |
- run: flutter pub get | |
# Step 5: Analyze the code using flutter analyze | |
- run: flutter analyze | |
# Step 6: Format the code using flutter format | |
# - run: flutter format -n --set-exit-if-changed . | |
# Step 7: Run tests using flutter test | |
# - run: flutter test | |
# Step 8: Build APK using flutter build apk | |
- run: flutter build apk | |
# Step 9: Upload the built APK as an artifact | |
- uses: actions/upload-artifact@v1 | |
with: | |
name: release-apk | |
path: build/app/outputs/apk/release/app-release.apk |