add method 'getValueAsIntegerString()' to 'jsonNode' class (#55) #104
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: .NET Core Build with Tests | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
name: test | |
runs-on: ubuntu-latest | |
env: | |
config: 'Release' | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.301 | |
# restore dependencies | |
- name: Install dependencies | |
run: dotnet restore | |
# build project | |
- name: Build | |
run: dotnet build --configuration $config --no-restore | |
# run unit tests with built project | |
- name: Test | |
run: dotnet test --no-restore --no-build --configuration $config | |
# run luax test suite | |
- name: Test | |
run: dotnet ../LuaX/bin/Release/net6.0/LuaX.dll project.ini | |
working-directory: LuaX.Test | |