Skip to content

Add code style-related files to Repo solution folder #17

Add code style-related files to Repo solution folder

Add code style-related files to Repo solution folder #17

Workflow file for this run

name: Build and Test
#<template-ci>
on:
push:
paths-ignore:
- 'cookiecutter.json' # Do not run .NET CI after editing cookiecutter.json (project setup in progress)
pull_request:
paths-ignore:
- 'cookiecutter.json' # Do not run .NET CI after editing cookiecutter.json (project setup in progress)
#</template-ci>
defaults:
run:
working-directory: src
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 📝 Fetch Sources
uses: actions/checkout@v2
- name: 🛠 Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
- name: 🏗 Restore dependencies
run: dotnet restore
- name: 🏗 Build
run: dotnet build --no-restore
- name: 🧪 Test
run: dotnet test --no-build --verbosity normal