This repository has been archived by the owner on May 10, 2024. It is now read-only.
chore(deps): update dependency lints to v4 #126
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: analyze | |
on: [push, pull_request] | |
jobs: | |
analyze: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
package: | |
- parrot | |
- parrot_cmd | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Dart | |
uses: dart-lang/[email protected] | |
with: | |
sdk: stable | |
- name: Install dependencies | |
run: dart pub get | |
working-directory: packages/${{ matrix.package }} | |
- name: Analyze ${{ matrix.package }} | |
working-directory: packages/${{ matrix.package }} | |
run: dart analyze | |