Skip to content

First. Separated from the project uni_color_name. #1

First. Separated from the project uni_color_name.

First. Separated from the project uni_color_name. #1

Workflow file for this run

name: Dart CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dart-lang/setup-dart@v1
with:
sdk: stable
- name: Install dependencies
run: dart pub get
- name: Format code
run: dart format --output=none --set-exit-if-changed .
- name: Analyze code
run: dart analyze
- name: Run tests
run: dart test