This repository has been archived by the owner on Oct 8, 2024. It is now read-only.
Bump actions/checkout from 4.1.4 to 4.1.6 #186
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
name: Dart | |
on: | |
schedule: | |
# “At 00:00 (UTC) on Sunday.” | |
- cron: '0 0 * * 0' | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
permissions: read-all | |
jobs: | |
correctness: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
package: [file, file_testing] | |
steps: | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 | |
- uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30 | |
with: | |
sdk: dev | |
- name: Install ${{ matrix.package }} dependencies | |
working-directory: packages/${{ matrix.package }} | |
run: dart pub get | |
- name: Verify formatting in ${{ matrix.package }} | |
working-directory: packages/${{ matrix.package }} | |
run: dart format --output=none --set-exit-if-changed . | |
- name: Analyze package ${{ matrix.package }} source | |
working-directory: packages/${{ matrix.package }} | |
run: dart analyze --fatal-infos | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
package: [file] | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
sdk: [stable, dev] | |
steps: | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 | |
- uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30 | |
with: | |
sdk: ${{ matrix.sdk }} | |
- name: Install ${{ matrix.package }} dependencies | |
working-directory: packages/${{ matrix.package }} | |
run: dart pub get | |
- name: Run ${{ matrix.package }} Tests | |
working-directory: packages/${{ matrix.package }} | |
run: dart pub run test -j1 |