Skip to content

Bump System.Net.Http.Json from 3.2.0 to 7.0.1 in /src #22

Bump System.Net.Http.Json from 3.2.0 to 7.0.1 in /src

Bump System.Net.Http.Json from 3.2.0 to 7.0.1 in /src #22

Workflow file for this run

name: dotnet-unit-tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
defaults:
run:
working-directory: ./src
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.x
- name: Clean
run: dotnet clean
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal