Skip to content

Dockerfile: Bump dotnet/sdk from 8.0.300 to 8.0.301 in /WebApi #40

Dockerfile: Bump dotnet/sdk from 8.0.300 to 8.0.301 in /WebApi

Dockerfile: Bump dotnet/sdk from 8.0.300 to 8.0.301 in /WebApi #40

Workflow file for this run

name: .NET WebApi Build
on:
push:
branches: [develop, master]
paths:
- 'WebApi/**/*'
pull_request:
branches: [develop, master]
paths:
- 'WebApi/**/*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore WebApi/
- name: Build
run: dotnet build WebApi/ --no-restore
- name: Test
run: dotnet test WebApi/ --no-build --verbosity normal