docs: add README files for all shared actions

This commit is contained in:
2026-06-13 00:59:06 -07:00
parent c44d07c87d
commit ff42edcb94
4 changed files with 78 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
# Enforce Flutter Version Constraint
Recursively scans all `pubspec.yaml` files in the repository and verifies that their Flutter SDK environment constraints match the configured expected value. Non-Flutter/pure Dart packages are automatically skipped.
## Inputs
| Name | Description | Required | Default |
| :--- | :--- | :--- | :--- |
| `expected_version` | The exact Flutter SDK constraint string expected in the pubspec. | Yes | `^3.19.0` |
## Example Usage
```yaml
- name: Verify Flutter SDK version constraint
uses: rodydavis/shared-actions/enforce-flutter-version@main
with:
expected_version: '^3.19.0'
```