Skip to content

Add packaging step for AspNetCore Extensions in the publish workflow #99

Add packaging step for AspNetCore Extensions in the publish workflow

Add packaging step for AspNetCore Extensions in the publish workflow #99

Workflow file for this run

name: .NET Build and Test
on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Restore dependencies
run: dotnet restore src/Concur.sln
- name: Build
run: dotnet build src/Concur.sln --no-restore
- name: Test
run: dotnet test src/Concur.sln --no-build --verbosity normal