[Actions] Bump dart-lang/setup-dart from 1.6.4 to 1.6.5 #45
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: Package test | |
on: push | |
permissions: | |
actions: read | |
contents: read | |
jobs: | |
test: | |
name: Run tests | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Dart | |
uses: dart-lang/[email protected] | |
- name: Install dependencies | |
run: dart pub get | |
- name: Analyze package | |
run: dart analyze | |
- name: Run package tests | |
run: dart test --concurrency=3 --reporter=github test |