Stabilize buffered file writer tests #171
Workflow file for this run
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: Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| test: | |
| timeout-minutes: 10 | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: [ | |
| # absolute minimum version, it is a breaking change when it doesn't work here anymore | |
| "3.0", | |
| # Minimum version that can be executed on Apple Silicon | |
| "3.3", | |
| # Latest known working version | |
| "3.10", | |
| # We absolutely have to support that | |
| "stable", | |
| # We should be informed about compatability, but it is not enforced | |
| "beta", | |
| ] | |
| container: | |
| image: dart:${{ matrix.version }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # Test chirp package | |
| - name: Get dependencies (chirp) | |
| run: dart pub get | |
| working-directory: packages/chirp | |
| - name: Run tests (chirp) | |
| run: dart test | |
| working-directory: packages/chirp |