[Span First #3]: Add active span parenting behaviour and more api scaffolding #3033
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: sentry-isar | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - release/** | |
| pull_request: | |
| paths: | |
| - '!**/*.md' | |
| - '!**/class-diagram.svg' | |
| - '.github/workflows/isar.yml' | |
| - '.github/workflows/analyze.yml' | |
| - '.github/actions/flutter-test/**' | |
| - '.github/actions/coverage/**' | |
| - 'packages/dart/**' | |
| - 'packages/isar/**' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| name: '${{ matrix.target }} | ${{ matrix.sdk }}' | |
| runs-on: ${{ matrix.target == 'linux' && 'ubuntu' || matrix.target }}-latest | |
| timeout-minutes: 30 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| target: [macos, linux, windows] | |
| sdk: [stable, beta] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: ./.github/actions/flutter-test | |
| with: | |
| directory: packages/isar | |
| - uses: ./.github/actions/coverage | |
| if: matrix.target == 'linux' && matrix.sdk == 'stable' | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| directory: packages/isar | |
| coverage: sentry_isar | |
| min-coverage: 55 | |
| analyze: | |
| uses: ./.github/workflows/analyze.yml | |
| with: | |
| package: packages/isar | |
| sdk: flutter |