Skip to content

openci-org/flutter-ci

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

flutter-ci

Run Flutter CI (analyze & test) for OpenCI workflows.

Usage

steps:
  - uses: actions/checkout@v4

  - uses: open-ci-io/flutter-setup@v1
    with:
      flutter-version: "3.29.2"

  - uses: open-ci-io/flutter-ci@v1

With options

  - uses: open-ci-io/flutter-ci@v1
    with:
      working-directory: "app"
      test-args: "--coverage"

Skip analyze or test

  - uses: open-ci-io/flutter-ci@v1
    with:
      analyze: "false"

Inputs

Input Description Default
analyze Run flutter analyze true
test Run flutter test true
working-directory Working directory for the Flutter project .
test-args Additional arguments for flutter test ``

What it does

  1. flutter pub get
  2. flutter analyze (optional)
  3. flutter test (optional)

License

MIT

About

OpenCI Action: Run Flutter CI (analyze & test)

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors