Skip to content

Commit

Permalink
Merge branch 'main' into 11-implement-basic-unit-tests-for-socraticag…
Browse files Browse the repository at this point in the history
…ent-and-lexer-classes
  • Loading branch information
p3nGu1nZz committed Mar 30, 2024
2 parents a534223 + ba442f5 commit 9dd48fb
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/unity-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Unity Tests

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Unity Environment
uses: game-ci/unity-actions/setup@v1
with:
unity-version: '2023.2.16f1' # Specify your Unity version here
- name: Run Tests
uses: game-ci/unity-actions/test-runner@v1
- name: Upload Test Results
uses: actions/upload-artifact@v2
if: always()
with:
name: Test Results
path: ${{ github.workspace }}/Artifacts/TestResults.xml

0 comments on commit 9dd48fb

Please sign in to comment.