feat: Omit parameter hints when the argument name matches #996
Workflow file for this run
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 | |
| on: [ push, pull_request ] | |
| jobs: | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - { os: ubuntu-22.04, target: linux, platform: linux-x64 } | |
| - { os: macos-14, target: darwin, platform: darwin-arm64 } | |
| - { os: windows-latest, target: windows, platform: win32-x64 } | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - uses: actboy168/setup-luamake@master | |
| - name: Build | |
| run: luamake -platform ${{ matrix.platform }} |