A bug fix to the calculation of the adler32 hash when compressing dat… #29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build a .NET project | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | |
name: .NET | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-latest, ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
env: | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
DOTNET_NOLOGO: true | |
steps: | |
- uses: actions/checkout@main | |
- name: Install latest .NET SDK | |
uses: Elskom/setup-latest-dotnet@main | |
with: | |
SDK_VERSION: '7.0.100' | |
RUNTIME_VERSIONS: '6.0.x' | |
- name: Restore, Build, Test, and Pack. | |
uses: Elskom/build-dotnet@main | |
with: | |
TEST: true |