(Test) Unity C# Linter #27
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: (Test) Unity C# Linter | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| include-paths: | |
| description: 'Comma-separated regex patterns for files or directories to include. More info: https://www.gnu.org/software/grep/manual/' | |
| required: true | |
| type: string | |
| default: 'Assets/Tests/StyleTest/FileNameIssueStyleViolationTest.cs' | |
| exclude-paths: | |
| description: 'Exclude files or directories (regex, comma-separated)' | |
| required: false | |
| type: string | |
| default: '' | |
| workflow_call: | |
| inputs: | |
| include-paths: | |
| type: string | |
| default: 'Assets/Tests/StyleTest/FileNameIssueStyleViolationTest.cs' | |
| exclude-paths: | |
| type: string | |
| default: '' | |
| jobs: | |
| unity-cs-linter: | |
| uses: ./.github/workflows/reusable-unity-cs-linter-dispatch.yaml | |
| with: | |
| base-branch: ${{ github.ref }} | |
| editorconfig-branch: ${{ github.event.repository.default_branch }} | |
| include-paths: ${{ inputs.include-paths }} | |
| exclude-paths: ${{ inputs.exclude-paths }} |