Skip to content

Bump MessagePack from 2.4.35 to 2.5.187 in /src/Nino.Benchmark #287

Bump MessagePack from 2.4.35 to 2.5.187 in /src/Nino.Benchmark

Bump MessagePack from 2.4.35 to 2.5.187 in /src/Nino.Benchmark #287

Workflow file for this run

name: .NET
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
# Set global defaults, including the working directory
defaults:
run:
working-directory: ./src # Default working directory for all jobs and steps
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ vars.DOTNET_VERSION }} # Using repository-level environment variable
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal