Bump System.Text.Json from 8.0.0 to 8.0.4 in /src/JT809.Protocol #64
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: .NET Core | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@master | |
with: | |
dotnet-version: 8.0.300 | |
- name: dotnet info | |
run: dotnet --info | |
- name: dotnet restore | |
run: dotnet restore ./src/JT809.Protocol.sln | |
- name: dotnet build | |
run: dotnet build ./src/JT809.Protocol.Test/JT809.Protocol.Test.csproj | |
- name: dotnet test | |
run: dotnet test ./src/JT809.Protocol.Test/JT809.Protocol.Test.csproj | |
- name: dotnet JT809.Protocol.Extensions.JT1078.Test build | |
run: dotnet build ./src/JT809.Protocol.Extensions/JT809.Protocol.Extensions.JT1078.Test/JT809.Protocol.Extensions.JT1078.Test.csproj | |
- name: dotnet JT809.Protocol.Extensions.JT1078.Test test | |
run: dotnet test ./src/JT809.Protocol.Extensions/JT809.Protocol.Extensions.JT1078.Test/JT809.Protocol.Extensions.JT1078.Test.csproj |