Nightly #47
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: Nightly | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 12 * * *' | |
| jobs: | |
| stable: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: dart:stable | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Dart version | |
| run: dart --version | |
| # Test chirp | |
| - name: Download dependencies (chirp) | |
| run: dart pub get | |
| working-directory: packages/chirp | |
| - name: Test (chirp) | |
| run: dart test | |
| working-directory: packages/chirp | |
| beta: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: dart:beta | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Dart version | |
| run: dart --version | |
| # Test chirp | |
| - name: Download dependencies (chirp) | |
| run: dart pub get | |
| working-directory: packages/chirp | |
| - name: Test (chirp) | |
| run: dart test | |
| working-directory: packages/chirp |