Skip to content

Bump System.Text.Json from 8.0.0 to 8.0.4 in /Src #78

Bump System.Text.Json from 8.0.0 to 8.0.4 in /Src

Bump System.Text.Json from 8.0.0 to 8.0.4 in /Src #78

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x' # SDK Version to use.
- name: Build project
run: dotnet build PipeAndFilter.sln -c Release
- name: Run test cases
run: dotnet test -c Release --no-build