Skip to content

Added .net 8 support #12

Added .net 8 support

Added .net 8 support #12

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
branches:
- master
env:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
jobs:
job:
strategy:
matrix:
include:
- os: ubuntu-20.04
artifact-name: Linux
- os: macos-11
artifact-name: Darwin
- os: windows-2019
artifact-name: Win64
runs-on: ${{ matrix.os }}
continue-on-error: true
steps:
- name: checkout repo
uses: actions/checkout@v3
- name: Install .NET 7.0.x
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Display dotnet info
run: dotnet --info
- name: Run tests
run: dotnet test src/MysticMind.PostgresEmbed.Tests/MysticMind.PostgresEmbed.Tests.csproj --framework net7.0