2021-04-15 01:44:45 +00:00
|
|
|
name: .NET
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ main ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ main ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup .NET
|
|
|
|
uses: actions/setup-dotnet@v1
|
|
|
|
with:
|
|
|
|
dotnet-version: 3.1.x
|
|
|
|
- name: Restore dependencies
|
2021-04-15 01:57:01 +00:00
|
|
|
run: dotnet restore algorithms/CSharp
|
2021-04-15 01:44:45 +00:00
|
|
|
- name: Build
|
2021-04-15 01:57:01 +00:00
|
|
|
run: dotnet build algorithms/CSharp --no-restore
|
2021-04-15 01:44:45 +00:00
|
|
|
- name: Test
|
2021-04-15 01:57:01 +00:00
|
|
|
run: dotnet test algorithms/CSharp --no-build --verbosity normal
|