Skip to content

Bump NLog from 5.2.4 to 5.2.7 #118

Bump NLog from 5.2.4 to 5.2.7

Bump NLog from 5.2.4 to 5.2.7 #118

Workflow file for this run

name: .NET
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore weather.sln
- name: Build
run: dotnet build weather.sln --no-restore
- name: Test
run: dotnet test tests/Weather.Tests/Weather.Tests.csproj --no-build --verbosity normal