Implement an actor worker pool for multiple audio files transcription #881
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: Development Tests | ||
| on: | ||
| pull_request: | ||
| pull_request_review: | ||
| types: [submitted] | ||
| workflow_dispatch: | ||
| jobs: | ||
| build-and-test: | ||
| name: "Build and Test" | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}-build-and-test | ||
| cancel-in-progress: true | ||
| uses: ./.github/workflows/unit-tests.yml | ||
|
Check warning on line 15 in .github/workflows/development-tests.yml
|
||
| with: | ||
| ios-version: "26.0.1" | ||
| ios-device: "iPhone 17" | ||
| watchos-version: "26.0" | ||
| visionos-version: "26.0" | ||
| macos-runner: "macos-26" | ||
| xcode-version: "26.0" | ||
| check-approvals: | ||
| runs-on: ubuntu-latest | ||
| outputs: | ||
| reviews: ${{ steps.reviews.outputs.state }} | ||
| permissions: | ||
| pull-requests: read | ||
| contents: read | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Check Approvals | ||
| id: reviews | ||
| env: | ||
| GH_TOKEN: ${{ github.token }} | ||
| pr: ${{ github.event.pull_request.number }} | ||
| run: | | ||
| echo "Checking PR approval for: $pr" | ||
| state=$(gh pr view $pr --json reviewDecision --jq '.reviewDecision') | ||
| echo "Review decision state: $state" | ||
| echo "state=$state" >> "$GITHUB_OUTPUT" | ||
| pre-merge-tests: | ||
| name: "Pre-merge Tests" | ||
| needs: [check-approvals] | ||
| if: needs.check-approvals.outputs.reviews == 'APPROVED' || github.event_name == 'workflow_dispatch' | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}-${{ matrix.os }} | ||
| cancel-in-progress: true | ||
| strategy: | ||
| matrix: | ||
| include: | ||
| - os: macos-15 | ||
| ios-version: "18.5" | ||
| ios-device: "iPhone 16" | ||
| watchos-version: "11.5" | ||
| visionos-version: "2.5" | ||
| xcode-version: "26.0" | ||
| uses: ./.github/workflows/unit-tests.yml | ||
|
Check warning on line 60 in .github/workflows/development-tests.yml
|
||
| with: | ||
| macos-runner: ${{ matrix.os }} | ||
| ios-version: ${{ matrix.ios-version }} | ||
| ios-device: ${{ matrix.ios-device }} | ||
| watchos-version: ${{ matrix.watchos-version }} | ||
| visionos-version: ${{ matrix.visionos-version }} | ||
| xcode-version: ${{ matrix.xcode-version }} | ||