Skip to content

Bump System.Text.Json from 8.0.4 to 8.0.5 in /src/TrelloDotNet #22

Bump System.Text.Json from 8.0.4 to 8.0.5 in /src/TrelloDotNet

Bump System.Text.Json from 8.0.4 to 8.0.5 in /src/TrelloDotNet #22

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: OnPullRequest (Build)
on:
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore TrelloDotNet.sln
- name: Build
run: dotnet build --no-restore