Skip to content

#2142. Change static analysis member invocation tests to be extension type tests #737

#2142. Change static analysis member invocation tests to be extension type tests

#2142. Change static analysis member invocation tests to be extension type tests #737

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@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
with:
fetch-depth: 2
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
with:
repository: dart-lang/sdk
path: sdk
- name: Set up JDK 11
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2
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 }}