9570be87ba
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
29 lines
716 B
YAML
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 }}
|