Skip to content

[ECO-4567] Support msgpack #585

[ECO-4567] Support msgpack

[ECO-4567] Support msgpack #585

name: "Unit and Integration Test: macOS"
on:
pull_request:
push:
branches:
- main
jobs:
check:
runs-on: macos-13
env:
DOTNET_NOLOGO: true
strategy:
fail-fast: false
matrix:
targetframework: [ "net6.0", "net7.0", "net8.0", "net9.0" ]
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Download dotnet framework
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.428
7.0.410
8.0.404
9.0.100
- name: Download dotnet build-script tools
run: dotnet tool restore
- name: Unit tests
run: ./build.sh --target=Test.NetStandard.Unit.WithRetry --framework=${{ matrix.targetframework }}
- name: Integration tests
run: ./build.sh --target=Test.NetStandard.Integration.WithRetry --framework=${{ matrix.targetframework }}