Skip to content

chore(deps): bump sentry_flutter from 9.14.0 to 9.15.0 #304

chore(deps): bump sentry_flutter from 9.14.0 to 9.15.0

chore(deps): bump sentry_flutter from 9.14.0 to 9.15.0 #304

Workflow file for this run

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

View workflow run for this annotation

GitHub Actions / Continuous Integration

Workflow syntax warning

.github/workflows/ci.yml (Line: 49, Col: 13): Conditional expression contains literal text outside replacement tokens. This will cause the expression to always evaluate to truthy. Did you mean to put the entire expression inside ${{ }}?
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