Last active
March 20, 2020 16:08
-
-
Save skolima/ffc49b7de986bfad42a538dcf8a67f92 to your computer and use it in GitHub Desktop.
Build and run tests for .NET Core project using GitHub Actions
This file contains hidden or 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: Run .NET Core tests | |
on: [push] | |
jobs: | |
build: | |
name: Build and test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-dotnet@v1 | |
- run: dotnet test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment