31 lines
608 B
YAML
31 lines
608 B
YAML
|
name: .NET
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ master ]
|
||
|
pull_request:
|
||
|
branches: [ master ]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v2
|
||
|
- name: Checkout submodules
|
||
|
run: |
|
||
|
git submodule sync
|
||
|
git submodule update --init --recursive
|
||
|
- name: Setup .NET
|
||
|
uses: actions/setup-dotnet@v1
|
||
|
with:
|
||
|
dotnet-version: 5.0.x
|
||
|
- name: Restore dependencies
|
||
|
run: dotnet restore
|
||
|
- name: Build
|
||
|
run: dotnet build --no-restore
|
||
|
- name: Test
|
||
|
run: dotnet test --no-build --verbosity normal
|