Skip to content

Update flurl and dotnet #9

Update flurl and dotnet

Update flurl and dotnet #9

Workflow file for this run

name: .NET
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Restore dependencies
run: dotnet restore
working-directory: ./src/
- name: Build
run: dotnet build --no-restore --configuration Release
# - name: Test
# run: dotnet test --no-build --verbosity normal
- name: Publish
uses: brandedoutcast/publish-nuget@v2.5.5
with:
PROJECT_FILE_PATH: ./src/NemligSharp.csproj
NUGET_KEY: ${{secrets.NUGET_API_KEY}}