Skip to content

Bump Serilog from 4.1.1-dev-02314 to 4.1.1-dev-02320 #67

Bump Serilog from 4.1.1-dev-02314 to 4.1.1-dev-02320

Bump Serilog from 4.1.1-dev-02314 to 4.1.1-dev-02320 #67

Workflow file for this run

name: .NET Core
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/cache@v3
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
restore-keys: |
${{ runner.os }}-nuget-
- uses: actions/checkout@v3
- name: Setup .NET Core
# Using buildjet/setup-dotnet@v3 instead of actions/setup-dotnet@v2 for specific reasons
uses: buildjet/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity minimal