Skip to content

chore: Add support for .NET 8.0 #39

chore: Add support for .NET 8.0

chore: Add support for .NET 8.0 #39

Workflow file for this run

name: InDirectLine-GitHub
on:
push:
branches:
- master
- release/*
pull_request:
branches:
- master
jobs:
build:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macOS-latest]
dotnet: ['8.x']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{matrix.dotnet}}
- name: Test
run: |
dotnet test ./Itminus.InDirectLine.Core.Tests/Itminus.InDirectLine.Core.Tests.csproj -c Release
- name: Build with dotnet
run: |
dotnet build ./Itminus.InDirectLine.Core/Itminus.InDirectLine.Core.csproj -c Release
dotnet build ./Itminus.InDirectLine.Web/Itminus.InDirectLine.Web.csproj -c Release
dotnet build ./Itminus.InDirectLine.Samples/Itminus.InDirectLine.IntegrationBotSample/Itminus.InDirectLine.IntegrationBotSample.csproj -c Release