Address LateInitializationError on swap timers #1379
Workflow file for this run
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: Run CI | |
on: | |
# Triggers the workflow on push events but only for the "main" branch | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
inputs: | |
ref: | |
description: 'SDK commit/tag/branch reference' | |
required: false | |
type: string | |
default: 'main' | |
jobs: | |
build: | |
runs-on: macOS-13 | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v3 | |
with: | |
path: 'cbreez' | |
- uses: actions/checkout@v3 | |
with: | |
repository: 'breez/breez-sdk' | |
ssh-key: ${{secrets.REPO_SSH_KEY}} | |
path: 'breez-sdk' | |
ref: ${{ inputs.ref }} | |
# Setup the flutter environment. | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
cache: true | |
- uses: actions/setup-java@v2 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
- name: pub-get | |
run: | | |
cd cbreez | |
flutter pub get | |
- name: dart-analyze | |
run: | | |
cd cbreez | |
dart analyze --fatal-infos | |
- name: run-tests | |
run: | | |
cd cbreez | |
flutter test | |
- name: dart-format | |
run: | | |
cd cbreez | |
dart format -o none --set-exit-if-changed -l 110 . |