Skip to content

feat: creates newtonsoft json project #52

feat: creates newtonsoft json project

feat: creates newtonsoft json project #52

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
run: dotnet restore src/Scaffolding.sln
- name: Build
run: dotnet build --configuration Release --no-restore src/Scaffolding.sln