SupportChild/.github/workflows/dotnet.yml

25 lines
483 B
YAML
Raw Normal View History

2022-05-19 04:38:59 -07:00
name: .NET
2022-03-29 17:59:18 -07:00
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
2022-05-19 04:38:59 -07:00
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal