Skip to content

Commit 37c448b

Browse files
committed
github actions
1 parent b07ff23 commit 37c448b

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

.github/workflows/tests.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: test-my-app
2+
on: [push, workflow_dispatch]
3+
jobs:
4+
drive:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Clone repository
8+
uses: actions/checkout@v4
9+
- name: Set up Flutter
10+
uses: subosito/flutter-action@v2
11+
with:
12+
channel: stable
13+
cache: true
14+
- run: |
15+
sudo apt-get update -y
16+
sudo apt-get install -y ninja-build libgtk-3-dev
17+
flutter test
18+
cd example
19+
flutter test integration_test/app_test.dart -dlinux

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Easy Shared Preferences
22

3+
[![Pub Publisher](https://img.shields.io/pub/publisher/easy_shared_preferences?style=flat-square)](https://pub.dev/publishers/zeyus.com/packages) [![Pub Version](https://img.shields.io/pub/v/easy_shared_preferences)](https://pub.dev/packages/easy_shared_preferences) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
4+
35
A game or app settings oriented wrapper API for [shared_preferences](https://pub.dev/packages/shared_preferences) (with cache), type-safe settings framework for Flutter applications with automatic validation, change notifications, and modular design.
46

57
**Note**: The same warnings and caveats apply as with the original `shared_preferences` package, such as not using it for sensitive data or large datasets.

0 commit comments

Comments
 (0)