Skip to content
This repository has been archived by the owner on Nov 14, 2024. It is now read-only.

Commit

Permalink
Fix the issue that the test failed
Browse files Browse the repository at this point in the history
  • Loading branch information
kjxbyz committed Jul 22, 2024
1 parent 6d702db commit ae2df8e
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 33 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/flutter_packager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,16 @@ jobs:

verify-version:
runs-on: ubuntu-latest
strategy:
matrix:
sdk: [3.0, 3.1, 3.2, 3.3]
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: 🎯 Setup Dart
uses: dart-lang/setup-dart@v1
with:
sdk: "stable"
sdk: ${{ matrix.sdk }}

- name: 📦 Install Dependencies
run: |
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ clean: ## Clean the environment
echo "╠ Installing dependencies..."
make get

build:
fvm dart run build_runner build --delete-conflicting-outputs

prepublish: ## Prepublish this package
echo "╠ Installing dependencies..."
fvm dart pub publish --dry-run
Expand Down
14 changes: 5 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
# flutter_packager

![coverage][coverage_badge]
[![style: very good analysis][very_good_analysis_badge]][very_good_analysis_link]
[![pub version][pub-image]][pub-url]
[![License: MIT][license_badge]][license_link]

A complete tool for packaging your Flutter apps..

---
> A complete tool for packaging your Flutter apps.
## Getting Started 🚀

Expand Down Expand Up @@ -61,8 +58,7 @@ $ open coverage/index.html

---

[coverage_badge]: coverage_badge.svg
[pub-image]: https://img.shields.io/pub/v/flutter_packager.svg?style=flat-square
[pub-url]: https://pub.dev/packages/flutter_packager
[license_badge]: https://img.shields.io/badge/license-MIT-blue.svg
[license_link]: https://opensource.org/licenses/MIT
[very_good_analysis_badge]: https://img.shields.io/badge/style-very_good_analysis-B22C89.svg
[very_good_analysis_link]: https://pub.dev/packages/very_good_analysis
[license_link]: https://github.com/kjxbyz/flutter_packager/blob/main/LICENSE
20 changes: 0 additions & 20 deletions coverage_badge.svg

This file was deleted.

2 changes: 1 addition & 1 deletion lib/src/version.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ae2df8e

Please sign in to comment.