SupportChild/.github/workflows/dotnet.yml

25 lines
481 B
YAML
Raw Normal View History

2022-05-19 11:38:59 +00:00
name: .NET
2022-03-30 00:59:18 +00:00
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
2024-06-23 12:12:35 +00:00
runs-on: self-hosted
2022-03-30 00:59:18 +00:00
steps:
2022-05-19 11:38:59 +00: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