Skip to content

[Github] Run unit tests for all test platforms #27

[Github] Run unit tests for all test platforms

[Github] Run unit tests for all test platforms #27

name: Build and Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Save build to cache
uses: actions/cache/save@v3
id: build
with:
path: ./bin
key: ${{github.run_number}}
test:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macOS-latest]
tfm: [net6.0, net7.0]
include:
- os: windows-latest
tfm: net462
runs-on: ${{ matrix.os }}
needs: [build]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- uses: actions/cache/restore@v3
id: build
with:
path: ./bin
key: ${{github.run_number}}
- name: Test
run: dotnet test -f ${{ matrix.tfm }} --no-build --no-restore