Skip to content

Add Coding Conventions #20

Add Coding Conventions

Add Coding Conventions #20

Workflow file for this run

name: .NET
on:
push:
branches: [ main, dev ]
pull_request:
branches: [ main, dev ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal
- name: Upload a Build Artifact
uses: actions/[email protected]
with:
# Artifact name
name: CobwebAPI # optional, default is artifact
# A file, directory or wildcard pattern that describes what to upload
path: CobwebAPI/bin/Release/netstandard2.0/CobwebAPI.dll
# The desired behavior if no files are found using the provided path.