Skip to content

Bump System.Text.Json from 4.7.2 to 8.0.4 in /src/Cubes3DIntersection.Application #6

Bump System.Text.Json from 4.7.2 to 8.0.4 in /src/Cubes3DIntersection.Application

Bump System.Text.Json from 4.7.2 to 8.0.4 in /src/Cubes3DIntersection.Application #6

Workflow file for this run

name: Build and Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Build and Test
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.101
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal