Skip to content

Bump System.Text.Json from 9.0.0-rc.2 to 9.0.0 (#22) #98

Bump System.Text.Json from 9.0.0-rc.2 to 9.0.0 (#22)

Bump System.Text.Json from 9.0.0-rc.2 to 9.0.0 (#22) #98

Workflow file for this run

# ensures that the solution can be built in release mode
name: build
on:
push:
branches:
- main
pull_request: {}
jobs:
build:
runs-on: ubuntu-latest
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: "true"
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9
- name: restore
run: dotnet workload restore
working-directory: "MaLoIdentModels"
- name: Build/Check for compile errors (dotnet build)
run: dotnet build --configuration Release
working-directory: "MaLoIdentModels"