feat: add subscription status APIs #270
Workflow file for this run
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: Flutter CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v3 | |
| with: | |
| distribution: "adopt" | |
| java-version: "14.x" | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: "stable" | |
| flutter-version: "3.x" | |
| - run: flutter pub get | |
| - run: dart format --set-exit-if-changed . | |
| # - run: flutter analyze . | |
| - run: flutter test --coverage | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| slug: hyochan/flutter_inapp_purchase | |
| # - run: flutter build apk | |
| # Upload generated apk to the artifacts. | |
| # - uses: actions/upload-artifact@v1 | |
| # with: | |
| # name: release-apk | |
| # path: build/app/outputs/apk/release/app-release.apk |