Skip to content

Initial commit

Initial commit #21

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
workflow_call:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: 'latest'
- uses: actions/setup-dotnet@v4
with:
dotnet-version: "10.x"
- name: Restore
run: dotnet restore
- name: Run unit tests
run: dotnet test --configuration Release --no-restore