Skip to content

Instantly share code, notes, and snippets.

@skolima
Last active March 20, 2020 16:08
Show Gist options
  • Save skolima/ffc49b7de986bfad42a538dcf8a67f92 to your computer and use it in GitHub Desktop.
Save skolima/ffc49b7de986bfad42a538dcf8a67f92 to your computer and use it in GitHub Desktop.
Build and run tests for .NET Core project using GitHub Actions
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