Skip to content

BLAKE2b.cs: Check whether the stream can be read. #193

BLAKE2b.cs: Check whether the stream can be read.

BLAKE2b.cs: Check whether the stream can be read. #193

Workflow file for this run

name: Build, test, and pack
on: [push, pull_request]
defaults:
run:
working-directory: src
jobs:
test-windows-x64:
runs-on: windows-latest
env:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
steps:
- uses: actions/checkout@v4
- name: Set up .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.0.x
9.0.x
- name: Install workloads
run: dotnet workload install ios tvos maccatalyst
- run: dotnet --info
- name: Test (.NET 8.0/Debug)
run: dotnet test -f net8.0 -c Debug
- name: Test (.NET 8.0/Release)
run: dotnet test -f net8.0 -c Release
- name: Test (.NET 9.0/Debug)
run: dotnet test -f net9.0 -c Debug
- name: Test (.NET 9.0/Release)
run: dotnet test -f net9.0 -c Release
- name: Pack
run: dotnet pack -c Release
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
path: '**/*.nupkg'
test-linux-x64:
needs: test-windows-x64
runs-on: ubuntu-latest
env:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
steps:
- uses: actions/checkout@v4
- name: Set up .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.0.x
9.0.x
- run: dotnet --info
- name: Test (.NET 8.0/Debug)
run: dotnet test -f net8.0 -c Debug
- name: Test (.NET 8.0/Release)
run: dotnet test -f net8.0 -c Release
- name: Test (.NET 9.0/Debug)
run: dotnet test -f net9.0 -c Debug
- name: Test (.NET 9.0/Release)
run: dotnet test -f net9.0 -c Release
test-macos-x64:
needs: test-linux-x64
runs-on: macos-latest
env:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
steps:
- uses: actions/checkout@v4
- name: Set up .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.0.x
9.0.x
- run: dotnet --info
- name: Test (.NET 8.0/Debug)
run: dotnet test -f net8.0 -c Debug
- name: Test (.NET 8.0/Release)
run: dotnet test -f net8.0 -c Release
- name: Test (.NET 9.0/Debug)
run: dotnet test -f net9.0 -c Debug
- name: Test (.NET 9.0/Release)
run: dotnet test -f net9.0 -c Release
test-linux-musl-x64:
needs: test-macos-x64
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/dotnet/sdk:9.0-alpine
env:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
steps:
- uses: actions/checkout@v4
- run: dotnet --info
- name: Test (.NET 9.0/Debug)
run: dotnet test -f net9.0 -c Debug
- name: Test (.NET 9.0/Release)
run: dotnet test -f net9.0 -c Release