Korean dialect missing space after step keywords (#254) #1267
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
name: test-dart | |
on: | |
push: | |
branches: | |
- main | |
- renovate/** | |
paths: | |
- dart/** | |
- testdata/** | |
- .github/** | |
pull_request: | |
branches: | |
- main | |
paths: | |
- dart/** | |
- testdata/** | |
- .github/** | |
workflow_call: | |
jobs: | |
test-dart: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install dart | |
uses: dart-lang/setup-dart@v1.4 | |
- name: run tests | |
run: dart test | |
working-directory: dart |