mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-02-03 19:56:31 +00:00
workflows
This commit is contained in:
parent
7144baf02e
commit
e2b8739ced
1 changed files with 19 additions and 0 deletions
19
.github/workflows/test.yaml
vendored
Normal file
19
.github/workflows/test.yaml
vendored
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
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
|
Loading…
Reference in a new issue