Skip to content

Update ci.yml

Update ci.yml #10

Workflow file for this run

name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
dotnet-framework: ["netstandard2.0", "net6.0", "net7.0", "net8.0", "net9.0"]
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: "9.0.x"
- name: List installed SDKs
run: dotnet --list-sdks
- name: Build with dotnet
run: dotnet build src/Relewise.Client.Extensions/ --configuration Debug --framework ${{ matrix.dotnet-framework }}
- name: Unit testing
run: dotnet test