Skip to content

Refactor of Docker, updated workflow #67

Refactor of Docker, updated workflow

Refactor of Docker, updated workflow #67

Workflow file for this run

name: Run tests
on:
push:
branches:
- master
- staging
pull_request:
branches:
- master
- staging
jobs:
run-tests:
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
runs-on: "${{ matrix.os }}"
steps:
- uses: actions/checkout@v4
- name: Setup .NET 8
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Unit and integration tests
run: dotnet test