Skip to content

Update to .NET 8

Update to .NET 8 #29

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
strategy:
matrix:
os: ['windows-2019', 'ubuntu-20.04']
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Build
run: dotnet build FastEndpoints.Extensions.All.sln --configuration Release
- name: Test
run: dotnet test FastEndpoints.Extensions.All.sln --configuration Release --no-build --verbosity normal