Skip to content

Fix #151 - support Timestamp precision in text format #57

Fix #151 - support Timestamp precision in text format

Fix #151 - support Timestamp precision in text format #57

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@v1
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Project Build
run: dotnet build --configuration Release
- name: Project Test
run: dotnet test --configuration Release --no-build --no-restore --verbosity normal --framework ${{ matrix.dotnet }}