Skip to content

update SDK and TFMs #15

update SDK and TFMs

update SDK and TFMs #15

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
configuration: [Debug, Release]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
- name: Build and test
shell: pwsh
run: |
$shellExt = if ($IsWindows) { "cmd" } else { "sh" }
& ./build-and-test.$shellExt --configuration ${{ matrix.configuration }}