29 lines
608 B
YAML
29 lines
608 B
YAML
name: .NET Test Pipeline
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
[master, 'release/*']
|
|
|
|
jobs:
|
|
build-and-test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up .NET Core
|
|
uses: actions/setup-dotnet@v4
|
|
with:
|
|
dotnet-version: 8.0.x
|
|
|
|
- name: Restore dependencies
|
|
run: dotnet restore
|
|
|
|
- name: Build the solution
|
|
run: dotnet build --configuration Release
|
|
|
|
- name: Run tests
|
|
run: dotnet test --configuration Release --no-build --no-restore --verbosity normal |