支持根据参数类型选择函数定义 #147
This file contains 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-20.04, platform: linux-x64 } | |
- { os: macos-14, platform: darwin-arm64 } | |
- { os: windows-latest, platform: win32-x64 } | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: actboy168/setup-luamake@master | |
- run: luamake -platform ${{ matrix.platform }} |