Skip to content

Updated wrong references on readme file #17

Updated wrong references on readme file

Updated wrong references on readme file #17

name: Build test and pack
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build test and pack
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore ./src/template
- name: Build
run: dotnet build ./src/template -c Debug --no-restore
- name: Test
run: dotnet test ./src/template --no-build --verbosity normal
- name: Pack
run: dotnet pack ./src/template --no-build --verbosity normal