Skip to content

Update dotnet.yml

Update dotnet.yml #42

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
working-directory: src
- name: Build
run: dotnet build --no-restore
working-directory: src
- name: Test
run: dotnet test --no-build --verbosity normal
working-directory: src
- name: Publish
uses: brandedoutcast/[email protected]
with:
PROJECT_FILE_PATH: src/NLog.Targets.MicrosoftTeams/NLog.Targets.MicrosoftTeams.csproj
NUGET_KEY: ${{secrets.NUGET_API_KEY}}