Fix calendar issue and upgrade dependencies (#113) #674
This file contains hidden or 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: Test | |
| on: push | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: set up JDK 1.8 | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: 1.8 | |
| cache: 'gradle' | |
| - uses: subosito/flutter-action@v2 | |
| name: Set up Flutter SDK | |
| with: | |
| channel: 'stable' | |
| cache: true | |
| - name: Retrieve the secret and decode it to a file | |
| env: | |
| DESKTOP_CREDENTIALS_BASE64: ${{ secrets.DESKTOP_CREDENTIALS_BASE64 }} | |
| FIREBASE_OPTIONS_BASE64: ${{ secrets.FIREBASE_OPTIONS_BASE64 }} | |
| GOOGLE_SERVICES_JSON_BASE64: ${{ secrets.GOOGLE_SERVICES_JSON_BASE64 }} | |
| GOOGLE_SERVICES_PLIST_IOS_BASE64: ${{ secrets.GOOGLE_SERVICES_PLIST_IOS_BASE64 }} | |
| GOOGLE_SERVICES_PLIST_MACOS_BASE64: ${{ secrets.GOOGLE_SERVICES_PLIST_MACOS_BASE64 }} | |
| WEB_INDEX_HTML_BASE64: ${{ secrets.WEB_INDEX_HTML_BASE64 }} | |
| run: .github/script/install_secret_script.sh | |
| - name: Run lint check | |
| run: | | |
| flutter clean | |
| flutter pub get | |
| dart analyze --fatal-infos | |
| - name: Run Unit test | |
| run: flutter test |