mirror of
https://github.com/Macro-Deck-App/Macro-Deck.git
synced 2026-05-06 21:51:04 +08:00
19 lines
344 B
YAML
19 lines
344 B
YAML
name: Run Tests
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Execute unit tests
|
|
run: |
|
|
dotnet restore "MacroDeck.Tests\MacroDeck.Tests.csproj"
|
|
dotnet test "MacroDeck.Tests\MacroDeck.Tests.csproj"
|
|
shell: cmd
|