Skip to content

fix!: Review fixes from initial split of cli tools tools. (#4) #12

fix!: Review fixes from initial split of cli tools tools. (#4)

fix!: Review fixes from initial split of cli tools tools. (#4) #12

Workflow file for this run

name: CLI Tools CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
dart_format:
name: Dart format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dart-lang/[email protected]
- name: Verify formatting
run: dart format --output=none --set-exit-if-changed .
dart_analyze:
name: Dart Analyze
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dart-lang/[email protected]
- run: dart pub get
- run: dart analyze --fatal-infos
dart_test:
name: Dart Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dart-lang/[email protected]
- run: dart test