Skip to content

Refactor the architecture #199

Refactor the architecture

Refactor the architecture #199

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [windows-latest, ubuntu-22.04]
dotnet: [7.0.201]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Restore tools
run: dotnet tool restore
- name: Run Build
run: dotnet build
- name: Run Tests
run: dotnet test --no-build