Skip to content

feat: add support for multiple target frameworks #55

feat: add support for multiple target frameworks

feat: add support for multiple target frameworks #55

Workflow file for this run

name: backend
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
dotnet-version: ["6.0.x", "7.0.x", "8.0.x"]
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Build with dotnet
run: dotnet build src/Relewise.Client.Extensions/ --configuration Debug
- name: Unit testing
run: dotnet test