Skip to content

Fixes #2925. Fix expected errors positions in grammar_A05_t01_lib.dart #1682

Fixes #2925. Fix expected errors positions in grammar_A05_t01_lib.dart

Fixes #2925. Fix expected errors positions in grammar_A05_t01_lib.dart #1682

Workflow file for this run

# This workflow will run the Dart language specparser on the modified files in a PR
name: Spec Parser
on:
pull_request:
branches: [ "master" ]
paths:
- '**.dart'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
with:
fetch-depth: 2
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
with:
repository: dart-lang/sdk
path: sdk
- name: Set up JDK 11
uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73
with:
java-version: '11'
distribution: temurin
- name: Set up Antlr4
run: sudo apt-get install -y antlr4
- name: Build specparser
run: make
working-directory: sdk/tools/spec_parser
- name: Check modified files
run: sdk/tools/spec_parse.py `gh pr view ${{ github.event.number }} --json files -q '.files[].path' | grep '.dart$' | xargs ls -d 2>/dev/null`
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}