Skip to content

Commit

Permalink
Use example test
Browse files Browse the repository at this point in the history
  • Loading branch information
konraddysput committed Jan 31, 2024
1 parent d83e44a commit 346d06e
Showing 1 changed file with 30 additions and 37 deletions.
67 changes: 30 additions & 37 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,59 +1,52 @@
name: Test Untiy
name: Test package

on: [push, pull_request]

jobs:
build:
name: Build my project ✨
testAllModes:
name: Test in ${{ matrix.testMode }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
projectPath:
- test-package
unityVersion: "2020.3.0f1" # some version must be included for package testing
testMode:
- playmode
- editmode
steps:
# Checkout
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
lfs: true

# Cache
- uses: actions/cache@v3
with:
path: Library
key: Library-${{ hashFiles('Demo~/Assets/**', 'Demo~/Packages/**', 'Demo~/ProjectSettings/**') }}
restore-keys: |
Library-
- name: set a correct package path
run: |
pwd
folderName=$(echo "${PWD##*/}")
rsync -r "$GITHUB_WORKSPACE" "package"
ls -F "package/$folderName"
# Test
- name: Run tests
uses: game-ci/unity-test-runner@v4
rsync -r "$GITHUB_WORKSPACE" "${{ matrix.projectPath }}"
ls -F "${{ matrix.projectPath }}/$folderName"
- uses: game-ci/unity-test-runner@v4
id: tests
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
with:
projectPath: ./package/backtrace-unity
packageMode: true
unityVersion: "2020.3.0f1"
projectPath: ${{ matrix.projectPath }}
unityVersion: ${{ matrix.unityVersion }}
testMode: ${{ matrix.testMode }}
artifactsPath: ${{ matrix.testMode }}-artifacts
checkName: ${{ matrix.testMode }} Test Results
coverageOptions: "generateAdditionalMetrics;generateHtmlReport;generateBadgeReport;assemblyFilters:+my.assembly.*"

# Build
- name: Build project
uses: game-ci/unity-builder@v4
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
- uses: actions/upload-artifact@v3
if: always()
with:
projectPath: ./package/backtrace-unity
targetPlatform: WebGL
packageMode: true

# Output
name: Test results for ${{ matrix.testMode }}
path: ${{ steps.tests.outputs.artifactsPath }}
- uses: actions/upload-artifact@v3
if: always()
with:
name: Build
path: build
name: Coverage results for ${{ matrix.testMode }}
path: ${{ steps.tests.outputs.coveragePath }}

0 comments on commit 346d06e

Please sign in to comment.