Skip to content

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

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

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

Workflow file for this run

name: Build PR
on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
paths:
- "src/**"
- "tests/**"
- "*.sln"
env:
DOTNET_NOLOGO: 1
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: 1
jobs:
build-commit:
name: "Build PR #${{ github.event.pull_request.number }}"
runs-on: ubuntu-latest
if: "!contains(format('{0} {1}', github.event.head_commit.message, github.event.pull_request.title), '[ci-skip]')"
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8
- name: Build Project
run: dotnet build
- name: Build Dockerfile
run: docker build -t oolunar/tomoe:latest .