Hand 3d Update #96
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
name: Dart | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# - uses: actions/[email protected] | |
# with: | |
# java-version: 11 | |
# distribution: temurin | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.10.6' | |
channel: 'stable' | |
architecture: x64 | |
cache: true | |
# - name: Install dependencies for apple_vision | |
# working-directory: ./packages/apple_vision | |
# run: flutter pub get | |
- name: Install dependencies for apple_vision_commons | |
working-directory: ./packages/apple_vision_commons | |
run: flutter pub get | |
- name: Install dependencies for apple_vision_face | |
working-directory: ./packages/apple_vision_face | |
run: flutter pub get | |
- name: Install dependencies for apple_vision_hand | |
working-directory: ./packages/apple_vision_hand | |
run: flutter pub get | |
- name: Install dependencies for apple_vision_pose | |
working-directory: ./packages/apple_vision_pose | |
run: flutter pub get | |
- name: Install dependencies for apple_vision_face example | |
working-directory: ./packages/apple_vision_face/example | |
run: flutter pub get | |
- name: Install dependencies for apple_vision_hand example | |
working-directory: ./packages/apple_vision_hand/example | |
run: flutter pub get | |
- name: Install dependencies for apple_vision_pose example | |
working-directory: ./packages/apple_vision_pose/example | |
run: flutter pub get |