mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2026-05-19 09:51:30 +00:00
Add repository checkout and Flutter environment setup steps to CI workflow
This commit is contained in:
parent
f511a4c611
commit
8a919a5d60
1 changed files with 15 additions and 1 deletions
16
.github/workflows/flutter_test.yaml
vendored
16
.github/workflows/flutter_test.yaml
vendored
|
|
@ -59,7 +59,12 @@ jobs:
|
||||||
needs: test
|
needs: test
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: ./.github/workflows/flutter-setup.yaml
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
- name: Setup Flutter Environment
|
||||||
|
uses: ./.github/actions/flutter-setup # Path to the composite action directory
|
||||||
with:
|
with:
|
||||||
flutter-channel: stable
|
flutter-channel: stable
|
||||||
java-version: 17
|
java-version: 17
|
||||||
|
|
@ -85,6 +90,15 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
- name: Setup Flutter Environment
|
||||||
|
uses: ./.github/actions/flutter-setup # Path to the composite action directory
|
||||||
|
with:
|
||||||
|
flutter-channel: stable
|
||||||
|
java-version: 17
|
||||||
- name: setup fastforge
|
- name: setup fastforge
|
||||||
run: |
|
run: |
|
||||||
dart pub global activate fastforge
|
dart pub global activate fastforge
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue