bumped to version 1.2.5 #119
This file contains 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: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Flutter SDK | |
run: sudo snap install flutter --classic | |
- name: Run Flutter doctor | |
run: flutter doctor -v | |
- name: Run tests | |
run: flutter test ./test/get_time_ago_test.dart ./test/messages/language/ro_msg_test.dart |