Skip to content

Commit

Permalink
Merge pull request #84 from dojoengine/lint
Browse files Browse the repository at this point in the history
chore(workflows): add linting job
  • Loading branch information
Larkooo authored Dec 31, 2024
2 parents 4294afd + fe3b52a commit 34c51a8
Showing 1 changed file with 32 additions and 1 deletion.
33 changes: 32 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,35 @@ jobs:

# Cleanup
- name: Cleanup temporary files
run: rm -rf _temp
run: rm -rf _temp

# lint:
# name: Run Code Linting
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3

# # Download Unity editor to get the required assemblies
# - name: Request Unity activation file
# id: getManualLicenseFile
# uses: game-ci/unity-request-activation-file@v2

# - name: Download Unity
# uses: game-ci/unity-builder@v4
# env:
# UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
# UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
# UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
# with:
# targetPlatform: StandaloneLinux64

# - name: Install dotnet tools
# run: |
# dotnet new tool-manifest
# dotnet tool install JetBrains.ReSharper.GlobalTools

# - name: Run ReSharper CLI inspection
# run: |
# jb inspectcode . --output=inspect-results.xml --severity=WARNING \
# --include="Assets/**/*.cs" \
# --exclude="**/Library/**/*.cs;**/Temp/**/*.cs;**/obj/**/*.cs"

0 comments on commit 34c51a8

Please sign in to comment.