Update PubNubApiDll to include conditional compilation for WebGL #232
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: Tests | |
on: | |
push: | |
workflow_dispatch: | |
concurrency: unity_run | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
tests: | |
name: Integration and Unit tests | |
runs-on: macos-latest | |
env: | |
EVENT_NOKQUEUE: 1 | |
PUB_KEY: ${{ secrets.PUB_KEY }} | |
SUB_KEY: ${{ secrets.SUB_KEY }} | |
PAM_PUB_KEY: ${{ secrets.PAM_PUB_KEY }} | |
PAM_SUB_KEY: ${{ secrets.PAM_SUB_KEY }} | |
PAM_SECRET_KEY: ${{ secrets.PAM_SECRET_KEY }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Checkout actions | |
uses: actions/checkout@v3 | |
with: | |
repository: pubnub/client-engineering-deployment-tools | |
ref: v1 | |
token: ${{ secrets.GH_TOKEN }} | |
path: .github/.release/actions | |
- name: Install Unity engine | |
uses: ./.github/.release/actions/actions/installers/unity | |
with: | |
unity-version: "2021.2.2f1" | |
- name: Integration tests | |
uses: ./.github/.release/actions/actions/runners/unity | |
with: | |
project-path: ./PubNubUnity | |
test-mode: play | |
license-username: ${{ secrets.UNITYCI_NEW_USER }} | |
license-password: ${{ secrets.UNITYCI_NEW_PASS }} | |
license-serial: ${{ secrets.UNITYCI_NEW_SERIAL }} | |
- name: Cancel workflow runs for commit on error | |
if: failure() | |
uses: ./.github/.release/actions/actions/utils/fast-jobs-failure | |
all-tests: | |
name: Tests | |
runs-on: ubuntu-latest | |
needs: [tests] | |
steps: | |
- name: Tests summary | |
run: echo -e "\033[38;2;95;215;0m\033[1mAll tests successfully passed" |