All Projects → steebchen → flutter

steebchen / flutter

Licence: MIT license
A Github action for the flutter CLI

Programming Languages

Dockerfile
14818 projects

Projects that are alternatives of or similar to flutter

xray-action
... a GitHub action to import test results into "Xray" - A complete Test Management tool for Jira.
Stars: ✭ 16 (-60%)
Mutual labels:  cd, actions
action-junit-report
Reports junit test results as GitHub Pull Request Check
Stars: ✭ 103 (+157.5%)
Mutual labels:  cd, actions
release-changelog-builder-action
A GitHub action that builds your release notes / changelog fast, easy and exactly the way you want.
Stars: ✭ 515 (+1187.5%)
Mutual labels:  cd, actions
cobertura-action
GitHub Action to report cobertura coverage
Stars: ✭ 43 (+7.5%)
Mutual labels:  actions
changelog-enforcer
A simple GitHub action that enforces that a maintained changelog is kept up to date.
Stars: ✭ 32 (-20%)
Mutual labels:  actions
redux-reducer-async
Create redux reducers for async behaviors of multiple actions.
Stars: ✭ 14 (-65%)
Mutual labels:  actions
bitops
Automate the provisioning and configuration of cloud infrastructure.
Stars: ✭ 28 (-30%)
Mutual labels:  cd
actions
Our Library of GitHub Actions
Stars: ✭ 49 (+22.5%)
Mutual labels:  actions
applicationset-progressive-sync
Progressive sync controller for Argo ApplicationSet
Stars: ✭ 99 (+147.5%)
Mutual labels:  cd
ghaction-virustotal
GitHub Action to upload and scan files with VirusTotal
Stars: ✭ 105 (+162.5%)
Mutual labels:  actions
azure-flutter-tasks
Easily build and deploy with latest Flutter build tasks for Azure DevOps Pipelines Tasks
Stars: ✭ 66 (+65%)
Mutual labels:  cd
recent-activity
Add your recent activity to your profile readme!
Stars: ✭ 87 (+117.5%)
Mutual labels:  actions
software-factory
The ready to use Continuous Integration platform
Stars: ✭ 17 (-57.5%)
Mutual labels:  cd
clang-format-action
GitHub Action for clang-format checking
Stars: ✭ 48 (+20%)
Mutual labels:  actions
actions-deploy-gist
📌 Deploy file to Github Gist
Stars: ✭ 26 (-35%)
Mutual labels:  actions
action-homebrew-bump-formula
⚙️ A GitHub Action to easily bump Homebrew formula on new release
Stars: ✭ 68 (+70%)
Mutual labels:  actions
cyanrip
Bule-ish CD ripper
Stars: ✭ 94 (+135%)
Mutual labels:  cd
actions
Reusable GitHub Actions for elementary apps
Stars: ✭ 34 (-15%)
Mutual labels:  actions
setup-testspace
A GitHub Action to install and configure the Testspace client used for publishing test content
Stars: ✭ 26 (-35%)
Mutual labels:  actions
connect-backup
A tool to backup and restore AWS Connect, with some useful other utilities too
Stars: ✭ 19 (-52.5%)
Mutual labels:  cd

Github Action for Flutter CLI

This action provides flutter for Github Actions.

NOTE – THIS REPOSITORY IS ARCHIVED

Please use https://github.com/subosito/flutter-action instead, which is actively maintained and has more features.

Usage examples

This example first fetches the dependencies with flutter pub get and then builds an apk and runs the flutter tests in parallel.

.github/workflows/main.yml

on: push
name: build and test app
jobs:
  build:
    name: install dependencies
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v1

    - name: install dependencies
      uses: steebchen/[email protected]
      with:
        args: pub get

    - name: run tests
      uses: steebchen/[email protected]
      with:
        args: test

    - name: build apk
      uses: steebchen/[email protected]
      with:
        args: build apk --release
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].