Skip to content

Fix call for deactivating systems. #140

Fix call for deactivating systems.

Fix call for deactivating systems. #140

Workflow file for this run

name: Health Checks
on:
push:
branches: [ main ]
pull_request: {}
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.100-rc.1.23463.5
- name: Install dependencies
run: dotnet restore
- name: Lint
run: dotnet format --verify-no-changes --no-restore
build-and-test:
name: Build & Test
strategy:
matrix:
kind: ['linux', 'windows', 'macOS']
include:
- kind: linux
os: ubuntu-latest
target: linux-x64
- kind: windows
os: windows-latest
target: win-x64
- kind: macOS
os: macos-latest
target: osx-x64
runs-on: "${{ matrix.os }}"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.100-rc.1.23463.5
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --logger "trx;LogFileName=test_results.trx"
- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v3
with:
name: test_results
path: |
**/test_results.trx