Skip to content

Bump dotnet version to 9.0 #18

Bump dotnet version to 9.0

Bump dotnet version to 9.0 #18

Workflow file for this run

name: .NET
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Restore dependencies
run: dotnet restore
working-directory: src
- name: Build
run: dotnet build PodcastAPI --no-restore
working-directory: src
- name: Test
run: dotnet test PodcastAPI.Tests --verbosity normal
working-directory: src