Skip to content

Enable AVX2 and AVX-512 UTF-8 methods in the default benchmark set. #32

Enable AVX2 and AVX-512 UTF-8 methods in the default benchmark set.

Enable AVX2 and AVX-512 UTF-8 methods in the default benchmark set. #32

Workflow file for this run

name: .NET
on: [push, pull_request]
jobs:
build:
name: Build and test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, ubuntu-24.04-arm] # add later:, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Setup .NET 10.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Unit tests
run: dotnet test --verbosity m --no-build
continue-on-error: false