mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2026-01-07 18:59:32 +00:00
Make Flutter version input optional in setup-env action and rename step in workflow
This commit is contained in:
parent
71eaac5237
commit
0d2db7778a
2 changed files with 3 additions and 2 deletions
2
.github/actions/setup-env.yaml
vendored
2
.github/actions/setup-env.yaml
vendored
|
|
@ -4,7 +4,7 @@ on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
inputs:
|
inputs:
|
||||||
flutter_version:
|
flutter_version:
|
||||||
required: true
|
required: false
|
||||||
type: string
|
type: string
|
||||||
default: "stable"
|
default: "stable"
|
||||||
description: "Flutter version to use. Default is 'stable'."
|
description: "Flutter version to use. Default is 'stable'."
|
||||||
|
|
|
||||||
3
.github/workflows/flutter_test.yaml
vendored
3
.github/workflows/flutter_test.yaml
vendored
|
|
@ -13,7 +13,8 @@ jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: ./.github/actions/setup-env.yaml
|
- name: setup env
|
||||||
|
uses: ./.github/actions/setup-env.yaml
|
||||||
|
|
||||||
# Debug: Echo current directory contents
|
# Debug: Echo current directory contents
|
||||||
- name: List root directory contents
|
- name: List root directory contents
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue