Add img_hash module #9
Workflow file for this run
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
name: Test | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
test-windows: | |
name: test-windows | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: subosito/flutter-action@v2 | |
with: | |
# flutter-version: '3.16.9' | |
channel: "stable" | |
- name: Run Test | |
run: | | |
dart run opencv_dart:setup windows -a x64 | |
$env:PATH = "${{github.workspace}}\windows;${env:PATH}" | |
flutter pub get | |
flutter test -x no-local-files |