Skip to content

Commit

Permalink
Fix to delete unnecessary file copy
Browse files Browse the repository at this point in the history
  • Loading branch information
RyodoTanaka committed Oct 9, 2024
1 parent 8d41a65 commit 46e1875
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,6 @@ jobs:
uses: actions/checkout@v4
with:
lfs: true # Large File Storageが必要な場合に true を指定

- name: Set up Unity version-specific Packages and ProjectSettings
run: |
if [[ "${{ matrix.unityVersion }}" == "2020.3.48f1" ]]; then
cp -r .ProjectSettings2020 ProjectSettings
cp -r .Packages2020 Packages
elif [[ "${{ matrix.unityVersion }}" == "2021.3.42f1" ]]; then
cp -r .ProjectSettings2021 ProjectSettings
cp -r .Packages2021 Packages
elif [[ "${{ matrix.unityVersion }}" == "2022.3.42f1" ]]; then
cp -r .ProjectSettings2022 ProjectSettings
cp -r .Packages2022 Packages
fi

# Unity Test Runnerを実行 (エディットモードテスト)
- name: Run Edit Mode Tests
Expand Down

0 comments on commit 46e1875

Please sign in to comment.