This repository has been archived by the owner on Nov 19, 2024. It is now read-only.
fs: Leave decompressor open until archive close (fix #365) #151
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
name: Macos-latest | |
on: [push, pull_request] | |
jobs: | |
build-and-test: | |
strategy: | |
matrix: | |
go-version: [1.21] | |
runs-on: macos-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Build | |
run: go build cmd/arc/main.go | |
- name: Test | |
run: go test -v -race ./... |