改进几个错误提示 #125
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 | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| luaVersion: ['5.5', '5.4', '5.3', '5.2', '5.1'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - uses: actboy168/setup-lua@master | |
| with: | |
| luaVersion: ${{ matrix.luaVersion }} | |
| - run: lua test/conformance.lua -c | |
| - run: lua -e JSONLIB=[[jsonc]] test/conformance.lua | |
| - run: lua test/jsonc.lua | |
| - run: lua test/edit.lua |