fix(c_sharp): @function.outer doesn't match on empty body of method_d… #1706
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: Lint | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| pull_request: | |
| branches: | |
| - "main" | |
| workflow_dispatch: | |
| jobs: | |
| lua: | |
| name: Lint Lua files | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Format | |
| run: | | |
| make formatlua | |
| git diff --exit-code | |
| - name: Lint | |
| run: make checklua | |
| queries: | |
| name: Lint query files | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Format | |
| run: | | |
| make formatquery | |
| git diff --exit-code | |
| - name: Lint | |
| run: make lintquery | |