Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/unity-meta-file-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout this repository
uses: actions/checkout@v4
# ghasec-ignore: unpinned-action
uses: AndanteTribe/Actions/actions/checkout@main # zizmor: ignore[unpinned-uses] repository-local action reference is intentionally tracked on @main
Comment on lines +23 to +24
with:
submodules: false
lfs: true
- name: Unity meta files check (github-hosted ubuntu-latest)
uses: DeNA/unity-meta-check@v4
# ghasec-ignore: unpinned-action
uses: AndanteTribe/Actions/actions/unity-meta-check@main # zizmor: ignore[unpinned-uses] repository-local action reference is intentionally tracked on @main
with:
target_path: src/ObjectReference.Unity
15 changes: 10 additions & 5 deletions .github/workflows/unity-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,13 @@ jobs:
checks: write
if: ${{ github.event_name == 'pull_request' && github.event.label.name == 'request-ci' || github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
steps:
- uses: actions/checkout@v4
# ghasec-ignore: unpinned-action
- uses: AndanteTribe/Actions/actions/checkout@main # zizmor: ignore[unpinned-uses] repository-local action reference is intentionally tracked on @main
Comment on lines +21 to +22
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}
- name: Unity Cache
uses: AndanteTribe/Actions/actions/unity-cache@main
# ghasec-ignore: unpinned-action
uses: AndanteTribe/Actions/actions/unity-cache@main # zizmor: ignore[unpinned-uses] repository-local action reference is intentionally tracked on @main
with:
unity-project-path: src/ObjectReference.Unity
- name: Free disk space
Expand All @@ -31,7 +33,8 @@ jobs:
chmod +x free_disk_space.sh
./free_disk_space.sh
rm -f free_disk_space.sh
- uses: game-ci/unity-test-runner@v4
# ghasec-ignore: unpinned-action
- uses: AndanteTribe/Actions/actions/unity-test-runner@main # zizmor: ignore[unpinned-uses] repository-local action reference is intentionally tracked on @main
id: tests
env:
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
Expand All @@ -43,13 +46,15 @@ jobs:
unityVersion: auto
testMode: playMode
coverageOptions: 'generateHtmlReport;generateAdditionalReports;assemblyFilters:+ObjectReference'
- uses: actions/upload-artifact@v4
# ghasec-ignore: unpinned-action
- uses: AndanteTribe/Actions/actions/upload-artifact@main # zizmor: ignore[unpinned-uses] repository-local action reference is intentionally tracked on @main
if: always()
with:
name: Test results
path: ${{ steps.tests.outputs.artifactsPath }}
retention-days: 2
- uses: actions/upload-artifact@v4
# ghasec-ignore: unpinned-action
- uses: AndanteTribe/Actions/actions/upload-artifact@main # zizmor: ignore[unpinned-uses] repository-local action reference is intentionally tracked on @main
if: always()
with:
name: Coverage Results
Expand Down
Loading