Skip to content

Bump System.Text.Json from 4.6.0 to 8.0.4 in /src/VendorMediaTypes #5

Bump System.Text.Json from 4.6.0 to 8.0.4 in /src/VendorMediaTypes

Bump System.Text.Json from 4.6.0 to 8.0.4 in /src/VendorMediaTypes #5

Workflow file for this run

name: build
on:
push:
paths:
- 'src/**'
- 'test/**'
- 'samples/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.100
- name: Build with dotnet
run: dotnet build --configuration Release
# - name: Generate coverage report
# run: dotnet test --collect "XPlat Code Coverage" --results-directory "./test-results"
# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v1
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# file: ./test-results/*.xml
# flags: unittests