Skip to content

Commit

Permalink
fix: corrected indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Ale1 committed Nov 16, 2023
1 parent 963cf13 commit 87158db
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,26 @@ jobs:
unityVersion: '2021.3.29f1'
testMode:
- editmode
steps:
steps:
# Checkout
- name: Checkout repository
- name: Checkout repository
uses: actions/checkout@v4
with:
lfs: true

# Cache
- uses: actions/cache@v3
# Cache
- uses: actions/cache@v3
with:
path: Library
key: Library-${{ hashFiles('Assets/**', 'Packages/**', 'ProjectSettings/**') }}
restore-keys: |
Library-
# Test
- name: Run tests
uses: game-ci/unity-test-runner@v4
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
with:
githubToken: ${{ secrets.GITHUB_TOKEN }}
packageMode: true #runs tests on packages rather than main proj
- name: Run tests
uses: game-ci/unity-test-runner@v4
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
with:
githubToken: ${{ secrets.GITHUB_TOKEN }}
packageMode: true #runs tests on packages rather than main proj

0 comments on commit 87158db

Please sign in to comment.