Skip to content

getting_started.md update #5

getting_started.md update

getting_started.md update #5

Workflow file for this run

name: Dart CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4 # Checks out your repository
- uses: dart-lang/setup-dart@v1 # Sets up the Dart SDK
- name: Install dependencies
run: dart pub get
- name: Run tests
run: dart test
- name: Analyze code
run: dart analyze
- name: Check formatting
run: dart format --output=none --set-exit-if-changed .