Skip to content

test(buffer): Finish testing the read-only string buffer and fix some… #35

test(buffer): Finish testing the read-only string buffer and fix some…

test(buffer): Finish testing the read-only string buffer and fix some… #35

Workflow file for this run

name: Run tests
on:
push:
branches:
- main
- dev
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.0.x
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --framework net10.0 --configuration Release --no-build