chore(deps): bump sentry_flutter from 9.14.0 to 9.15.0 #304
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: "Continuous Integration" | ||
| on: | ||
| push: | ||
| branches: [main] | ||
| pull_request: | ||
| branches: [main] | ||
| workflow_dispatch: | ||
| jobs: | ||
| ci: | ||
| name: "🚀 CI" | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 10 | ||
| steps: | ||
| - name: 📚 Git Checkout | ||
| uses: actions/checkout@v4 | ||
| - name: 🐦 Setup Flutter | ||
| uses: subosito/flutter-action@v2 | ||
| with: | ||
| flutter-version: 3.41.1 | ||
| channel: stable | ||
| cache: true | ||
| - name: 📦 Install Dependencies | ||
| run: | | ||
| flutter pub global activate very_good_cli | ||
| flutter pub global activate coverage | ||
| - name: 🦄 Bootstrap | ||
| run: bash ./scripts/bootstrap.bash | ||
| - name: ✨ Check Formatting | ||
| run: bash ./scripts/format.bash | ||
| - name: 🕵️ Analyze | ||
| run: bash ./scripts/analyze.bash | ||
| # ——————————————————————————————————————————————————————— | ||
| # RUN TESTS + COVERAGE | ||
| # ——————————————————————————————————————————————————————— | ||
| - name: 🧪 Run Tests | ||
| run: bash ./scripts/test.bash | ||
| - name: 📥 Upload test report | ||
| uses: actions/upload-artifact@v4 | ||
| if: (success() || failure()) && ${{ github.actor != 'dependabot[bot]' }} | ||
|
Check warning on line 49 in .github/workflows/ci.yml
|
||
| with: | ||
| name: test-results | ||
| path: reports/tests.json | ||
| # ——————————————————————————————————————————————————————— | ||
| # TEST REPORT JOB | ||
| # ——————————————————————————————————————————————————————— | ||
| report_tests: | ||
| name: "🚛 Test report" | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 10 | ||
| # continue-on-error allows this job to run even if 'ci' fails | ||
| continue-on-error: true | ||
| needs: [ci] | ||
| steps: | ||
| - name: Test Report | ||
| uses: dorny/test-reporter@v1 | ||
| with: | ||
| artifact: test-results | ||
| name: Test Report | ||
| path: "**/tests.json" | ||
| reporter: flutter-json | ||
| fail-on-error: false | ||