Skip to content

docs: Moved config readme into main readme #162

docs: Moved config readme into main readme

docs: Moved config readme into main readme #162

Workflow file for this run

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