2 posts

Flutter

More CI for Flutter with GitHub Actions - Code Coverage

More CI for Flutter with GitHub Actions - Code Coverage

Adam Cooper

This is a follow up to my previous post on getting started with Flutter and GitHub Actions, if you haven't worked with Actions before you might want to start there. In the previous post we set up a simple CI pipeline to build my Fructika app with three steps (build, analyze and test) running on an Ubuntu Linux VM , the YAML for which looks like this. on: push jobs: build-and-test:

Flutter GitHub Actions Testing
Continuous Integration for Flutter with GitHub Actions

Continuous Integration for Flutter with GitHub Actions

Adam Cooper

The nice folks over at GitHub (or the evil Microsoft empire, depending on your point of view) recently added me to the GitHub Actions beta. If you're unfamiliar with GitHub Actions it's their Continuous Integration (CI) & Continuous Deployment (CD) pipeline or to quote  from the feature page: GitHub Actions makes it easy to automate all your software workflows,  now with world-class CI/CD. Build, test, and deploy your code right

Flutter Getting Started Testing GitHub Actions