This repository has been archived by the owner on May 1, 2024. It is now read-only.
Update project status #101
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: Build & Test | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET Core 2 | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '2.1.810' # SDK Version | |
- name: Setup .NET Core 3 | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '3.1.100' # SDK Version | |
- name: Build | |
run: dotnet build --configuration Release DatadogStatsD | |
- name: Test | |
run: dotnet test DatadogStatsD.Test |