Initial release: DejaJson wire format v1 #1
This file contains hidden or 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: tests | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| dart: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dart-lang/setup-dart@v1 | |
| with: | |
| sdk: stable | |
| - name: Install dependencies | |
| run: dart pub get | |
| - name: Analyze | |
| run: dart analyze --fatal-infos | |
| - name: Check formatting | |
| run: dart format --output=none --set-exit-if-changed lib test tool example | |
| - name: Run tests (VM + browser) | |
| run: dart test -p vm,chrome |