In the Event.exception
constructor, modify a clone of the args
argument instead of args
itself
#780
Workflow file for this run
This file contains 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: package:unified_analytics | |
permissions: read-all | |
on: | |
pull_request: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/unified_analytics.yml' | |
- 'pkgs/unified_analytics/**' | |
push: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/unified_analytics.yml' | |
- 'pkgs/unified_analytics/**' | |
schedule: | |
- cron: '0 0 * * 0' # weekly | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: pkgs/unified_analytics | |
strategy: | |
matrix: | |
sdk: [stable, dev] # {pkgs.versions} | |
include: | |
- sdk: stable | |
run-tests: true | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672 | |
with: | |
sdk: ${{matrix.sdk}} | |
- run: dart pub get | |
- run: dart analyze --fatal-infos | |
- run: dart format --output=none --set-exit-if-changed . | |
if: ${{matrix.run-tests}} | |
- run: dart test | |
if: ${{matrix.run-tests}} |