Skip to content

switch back to alpine #6

switch back to alpine

switch back to alpine #6

Workflow file for this run

name: .NET Build
on:
[push, pull_request, pull_request_review, pull_request_review_comment, pull_request_target]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x'
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal