Skip to content

perf: Add 8-bit lookup table to Huffman decoder (#45) #45

perf: Add 8-bit lookup table to Huffman decoder (#45)

perf: Add 8-bit lookup table to Huffman decoder (#45) #45

Workflow file for this run

name: windows
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
strategy:
matrix:
go-version: [1.23.x]
os: [windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache: true
- name: Test
run: |
go test --race --covermode=atomic ./...