Skip to content

wip: macos test

wip: macos test #719

Workflow file for this run

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

Check failure on line 31 in .github/workflows/run-tests.yml

View workflow run for this annotation

GitHub Actions / Run Tests

Invalid workflow file

error parsing called workflow ".github/workflows/run-tests.yml" -> "./.github/workflows/macos-test.yml" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
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

Check failure on line 42 in .github/workflows/run-tests.yml

View workflow run for this annotation

GitHub Actions / Run Tests

Invalid workflow file

error parsing called workflow ".github/workflows/run-tests.yml" -> "./.github/workflows/windows-test.yml" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
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 }}