Skip to content

Bump to version 1.0.0 #13

Bump to version 1.0.0

Bump to version 1.0.0 #13

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: C# CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./lib/csharp-models-to-json_test
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal