Skip to content

Bump System.Text.Json from 4.7.2 to 8.0.4 in /src/JsonServices.Serialization.SystemTextJson #12

Bump System.Text.Json from 4.7.2 to 8.0.4 in /src/JsonServices.Serialization.SystemTextJson

Bump System.Text.Json from 4.7.2 to 8.0.4 in /src/JsonServices.Serialization.SystemTextJson #12

Workflow file for this run

name: .NET
on:
push:
branches:
- master
- release/*
pull_request:
branches:
- master
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout source
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
6.0.x
- name: Restore dependencies
run: dotnet restore src
- name: Build
run: dotnet build src --no-restore
- name: Test
run: dotnet test src --no-build --verbosity normal