Skip to content

Fix #155 don't use ion escaping in JSON mode #67

Fix #155 don't use ion escaping in JSON mode

Fix #155 don't use ion escaping in JSON mode #67

Workflow file for this run

name: Ion DotNet CI
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest] # add other OSes later
dotnet: ['2.1', '3.1']
steps:
- name: Git Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Setup .Net
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
${{ matrix.dotnet }}
7.0.x
- name: Project Build
run: dotnet build --configuration Release
- name: Project Test
run: dotnet test --configuration Release --no-build --no-restore --verbosity normal --framework net7.0