Skip to content

Bump System.Text.Json from 8.0.4 to 8.0.5 in /CustomEnvironmentConfig #1

Bump System.Text.Json from 8.0.4 to 8.0.5 in /CustomEnvironmentConfig

Bump System.Text.Json from 8.0.4 to 8.0.5 in /CustomEnvironmentConfig #1

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup dotnet 8.x
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.x
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore
- name: Run tests
run: dotnet test -c Release --no-restore --no-build --verbosity normal