Skip to content

[Span First #2]: Add envelope type to Dart layer #7258

[Span First #2]: Add envelope type to Dart layer

[Span First #2]: Add envelope type to Dart layer #7258

Workflow file for this run

name: sentry-file
on:
push:
branches:
- main
- release/**
pull_request:
paths:
- '!**/*.md'
- '!**/class-diagram.svg'
- '.github/workflows/file.yml'
- '.github/workflows/analyze.yml'
- '.github/actions/dart-test/**'
- '.github/actions/coverage/**'
- 'packages/dart/**'
- 'packages/file/**'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
name: '${{ matrix.os }} | ${{ matrix.sdk }}'
runs-on: ${{ matrix.os }}-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
os: [macos, ubuntu, windows]
sdk: [stable, beta]
steps:
- uses: actions/checkout@v5
- uses: ./.github/actions/dart-test
with:
directory: packages/file
web: false
- uses: ./.github/actions/coverage
if: runner.os == 'Linux' && matrix.sdk == 'stable'
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: packages/file
coverage: sentry_file
min-coverage: 55
analyze:
uses: ./.github/workflows/analyze.yml
with:
package: packages/file
panaThreshold: 90