mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-06 04:17:42 +00:00
20 lines
458 B
YAML
20 lines
458 B
YAML
|
name: Test
|
||
|
on: [push, pull_request]
|
||
|
jobs:
|
||
|
test:
|
||
|
runs-on: ubuntu-20.04
|
||
|
steps:
|
||
|
- name: Prepare repository
|
||
|
uses: actions/checkout@v3
|
||
|
with:
|
||
|
flutter-version: '3.0.5'
|
||
|
channel: 'stable'
|
||
|
- name: Install Flutter
|
||
|
uses: subosito/flutter-action@v2
|
||
|
- name: Get dependencies
|
||
|
run: flutter pub get
|
||
|
- name: Analyze
|
||
|
run: flutter analyze
|
||
|
- name: Test
|
||
|
run: flutter test
|