Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create GitHub Actions for unit testing in .NET projects?

I use NUnit framework to test my .NET project. I want to run my tests via GitHub Actions.

What should be included in the assembly of my project? Maybe there are some standard examples?

like image 935
Leonid Avatar asked Jan 14 '20 22:01

Leonid


1 Answers

You do not need to include anything into your assembly to run your tests using GitHub Actions. Just create workflow file in .github/workflows folder with the following content (assuming that you have .NET Core project):

---
name: Tests

on: push

jobs:
  tests:
    name: Unit Testing
    runs-on: windows-latest
    steps:
      - uses: actions/[email protected]
      - run: dotnet test

dotnet is pre-installed on windows machine but is not pre-installed on macos and ubuntu. So, you have to install dotnet by adding an extra step in case you want to run it on one of these machines. You can use actions/setup-dotnet action for this purpose.

like image 143
fabasoad Avatar answered Oct 02 '22 01:10

fabasoad