Skip to content

WIP test against the lmars-dev cluster #396

WIP test against the lmars-dev cluster

WIP test against the lmars-dev cluster #396

Workflow file for this run

name: "Unit and Integration Test: macOS"
on:
pull_request:
push:
branches:
- main
jobs:
check:
runs-on: macos-latest
env:
DOTNET_NOLOGO: true
strategy:
matrix:
targetframework: [ "net6.0", "net7.0" ]
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Download dotnet framework
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.0.403
7.0.408
- name: Download dotnet build-script tools
run: dotnet tool restore
- name: Unit tests
run: ./build.sh Test.NetStandard.Unit.WithRetry -f ${{ matrix.targetframework }}
- name: Integration tests
run: ./build.sh Test.NetStandard.Integration.WithRetry -f ${{ matrix.targetframework }}