Skip to content

Remove logging string interpolations from hot path #32

Remove logging string interpolations from hot path

Remove logging string interpolations from hot path #32

Workflow file for this run

name: Run analysis and tests for pull requests
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
# Checkout the PR branch
- uses: actions/checkout@v3
# Setup Flutter environment
- uses: subosito/flutter-action@v2
with:
channel: "stable"
# Download all the packages that the app uses
- run: flutter pub get
# Static analysis
- run: flutter analyze
# Run all tests
- run: flutter test
test_goldens:
runs-on: macos-latest
steps:
# Checkout the PR branch
- uses: actions/checkout@v3
# Setup Flutter environment
- uses: subosito/flutter-action@v2
with:
channel: "stable"
architecture: x64
# Download all the packages that the app uses
- run: flutter pub get
# Static analysis
- run: flutter analyze
# Run all tests
- run: flutter test test_goldens