Skip to content

Don't use a data descriptor for symlinks so they can be stream-unzipped #26

Don't use a data descriptor for symlinks so they can be stream-unzipped

Don't use a data descriptor for symlinks so they can be stream-unzipped #26

Workflow file for this run

name: Go
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
strategy:
matrix:
go: [1.18.x, 1.19.x, 1.20.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Setup go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Run tests
run: go test --cpu 1,4 -race -coverprofile coverage.txt -covermode atomic ./...
- uses: codecov/codecov-action@v2