Skip to content

Instantly share code, notes, and snippets.

@salihgueler
Created September 11, 2019 10:41
Show Gist options
  • Save salihgueler/7ca1def5266bb5855602b603de579a04 to your computer and use it in GitHub Desktop.
Save salihgueler/7ca1def5266bb5855602b603de579a04 to your computer and use it in GitHub Desktop.
name: Flutter Actions CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
container:
image: cirrusci/flutter:latest
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: flutter packages get
- name: Run tests
run: flutter test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment