#2956. Update and rename existing tests for type void
#1761
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
# 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@11bd71901bbe5b1630ceea73d27597364c9af683 | |
with: | |
fetch-depth: 2 | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
with: | |
repository: dart-lang/sdk | |
path: sdk | |
- name: Set up JDK 11 | |
uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b | |
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 }} |