Merge pull request #3316 from CppCXY/master #1001
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 }} |