Skip to content
This repository was archived by the owner on Apr 17, 2025. It is now read-only.

Merge pull request #54 from AngeloDotNet/dependabot/nuget/src/NET6Cus… #114

Merge pull request #54 from AngeloDotNet/dependabot/nuget/src/NET6Cus…

Merge pull request #54 from AngeloDotNet/dependabot/nuget/src/NET6Cus… #114

Workflow file for this run

name: Build and Test
on:
push:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
include-prerelease: true
- name: Build with dotnet
run: dotnet build ./src/NET6CustomLibrary/NET6CustomLibrary.csproj --configuration Release
- name: test with dotnet
run: dotnet test