Implement tx data decoding #13
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: UI-KIT CI/CD | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
lint: | |
name: Static code analysis | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v1 | |
- run: git submodule update --init --recursive | |
- run: flutter pub get | |
- run: cd packages/bip39 && flutter pub get | |
- run: cd .. | |
- run: cd packages/nomo-common && flutter pub get | |
- run: cd .. | |
- run: cd .. | |
- name: Lint analysis | |
run: flutter analyze |