processors: use jsonparser package for captions processor #445
Workflow file for this run
This file contains hidden or 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: macOS | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - dev | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: macos-14 | |
| steps: | |
| - name: Install Dependencies | |
| run: | | |
| rm /usr/local/bin/2to3* | |
| rm /usr/local/bin/idle3* | |
| rm /usr/local/bin/pydoc* | |
| rm /usr/local/bin/python3* | |
| brew install opencv | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Install Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.25.1' | |
| cache: true | |
| - name: Run tests | |
| run: go test -v ./... | |
| - name: Build wasmVision binary | |
| run: | | |
| go build -o ./build/wasmvision ./cmd/wasmvision | |
| - name: Archive wasmvision binary | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: wasmvision-macos-arm64 | |
| path: ./build/wasmvision |