Merge pull request #110 from varianter/employee/remove-unnecessary-en… #598
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: DotNet Build and Test | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '7.0.x' | |
- name: Build with dotnet | |
run: dotnet build ./Chewbacca.sln --configuration Release | |
- name: Test with dotnet | |
run: dotnet test ./Chewbacca.sln --configuration Release |