Milestone/v2.0.0 #12
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: π Code Analysis | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
analyze: | |
runs-on: ubuntu-latest | |
steps: | |
- name: π₯ Checkout Code | |
uses: actions/checkout@v4 | |
- name: π― Set up Dart SDK | |
uses: dart-lang/setup-dart@v1 | |
with: | |
sdk: 3.5.1 | |
- name: π¦ Install Dart Dependencies | |
run: dart pub get | |
- name: π¨ Check Dart Formatting | |
run: dart format --output=none --set-exit-if-changed . | |
- name: π΅οΈββοΈ Analyze Dart Code | |
run: dart analyze | |
- name: π Check Package Publishing | |
run: dart pub publish --dry-run |