24 lines
616 B
YAML
24 lines
616 B
YAML
name: dotnet package
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
dotnet-version: [ '7.0.x' ]
|
|
|
|
steps:
|
|
- uses: https://github.com/actions/checkout@v3
|
|
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
|
|
uses: https://github.com/actions/setup-dotnet@v3
|
|
with:
|
|
dotnet-version: ${{ matrix.dotnet-version }}
|
|
- name: Install dependencies
|
|
run: dotnet restore
|
|
- name: Build
|
|
run: dotnet build --configuration Release --no-restore
|
|
- name: Test
|
|
run: dotnet test --no-restore --verbosity normal |