fix: prevent crash in Holistic Landmarker when face is lost (#1418) #941
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: Run Tests | |
| on: | |
| push: {} | |
| pull_request_target: | |
| types: [labeled] | |
| concurrency: | |
| group: ${{ github.head_ref || github.ref }} | |
| cancel-in-progress: ${{ github.ref_name != 'master' }} | |
| jobs: | |
| check-test-trigger: | |
| runs-on: ubuntu-latest | |
| if: github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'ci:run') | |
| steps: | |
| - uses: actions-ecosystem/action-remove-labels@v1 | |
| if: contains(github.event.pull_request.labels.*.name, 'ci:run') | |
| with: | |
| labels: ci:run | |
| run-tests-on-linux: | |
| uses: ./.github/workflows/linux-test.yml | |
| needs: check-test-trigger | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| is_master: ${{ github.ref_name == 'master' }} | |
| secrets: | |
| UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} | |
| UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} | |
| UNITY_TOTP_KEY: ${{ secrets.UNITY_TOTP_KEY }} | |
| run-tests-on-macos: | |
| uses: ./.github/workflows/macos-test.yml | |
| needs: check-test-trigger | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| is_master: ${{ github.ref_name == 'master' }} | |
| secrets: | |
| UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} | |
| UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} | |
| UNITY_TOTP_KEY: ${{ secrets.UNITY_TOTP_KEY }} | |
| run-tests-on-windows: | |
| uses: ./.github/workflows/windows-test.yml | |
| needs: check-test-trigger | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| secrets: | |
| UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} | |
| UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} | |
| UNITY_TOTP_KEY: ${{ secrets.UNITY_TOTP_KEY }} |