Skip to content

chore: Include Competences in Employee view model (#135) #660

chore: Include Competences in Employee view model (#135)

chore: Include Competences in Employee view model (#135) #660

Workflow file for this run

name: DotNet Build and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0.x'
- name: Build with dotnet
run: dotnet build ./Chewbacca.sln --configuration Release
- name: Test with dotnet
run: dotnet test ./Chewbacca.sln --configuration Release