Skip to content

Include opening $ in identifier interpolation scope #186

Include opening $ in identifier interpolation scope

Include opening $ in identifier interpolation scope #186

Workflow file for this run

name: Dart
on:
schedule:
# “At 00:00 (UTC) on Sunday.”
- cron: '0 0 * * 0'
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
PUB_ENVIRONMENT: bot.github
jobs:
build:
runs-on: ubuntu-latest
container:
image: google/dart:dev
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Print Dart version
run: dart --version
- name: Install dependencies
run: dart pub get
- name: Analyze
run: dart analyze
- name: Verify grammar file
run: dart run tool/verify.dart
- name: Test
run: dart test