Created
September 11, 2019 10:41
-
-
Save salihgueler/7ca1def5266bb5855602b603de579a04 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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