You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Github actions can be used as CI:
Follow the instruction on https://github.com/subosito/flutter-action to create a Github action for running tests (and other flutter command).
For example the following yml file will run analyze and test on every push events:
name: CIon: pushjobs:
flutter-ci:
name: run testsruns-on: ubuntu-latest# see https://github.com/marketplace/actions/flutter-actionsteps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1with:
java-version: '12.x'
- uses: subosito/flutter-action@v1with:
flutter-version: '1.22.x'channel: 'stable'
- run: flutter pub get
- run: flutter analyze
- run: flutter test
The following question contains some links and examples of
.travis.yml
files:https://stackoverflow.com/questions/60493958/flutter-integration-tests-with-travis-ci
The text was updated successfully, but these errors were encountered: