Files
shorebird/.github/actions/verify_version/action.yaml
T
dependabot[bot] 9570be87ba chore(deps): bump the gh-deps group across 2 directories with 2 updates (#3830)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-30 07:41:25 -07:00

29 lines
716 B
YAML

name: Verify Version Workflow
description: Verify the version of the package is correct
inputs:
working_directory:
required: false
description: "The working directory to run the command in"
default: "."
runs:
using: "composite"
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v7
- name: 🎯 Setup Dart
uses: dart-lang/setup-dart@v1
- name: 📦 Install Dependencies
shell: ${{ inputs.shell }}
run: dart pub get
working-directory: ${{ inputs.working_directory }}
- name: 🔎 Verify version
shell: ${{ inputs.shell }}
run: dart run test --run-skipped -t version-verify
working-directory: ${{ inputs.working_directory }}