Skip to content

Bugfix: Tar files created in their target directory shouldn't recurse infinitely #141

Bugfix: Tar files created in their target directory shouldn't recurse infinitely

Bugfix: Tar files created in their target directory shouldn't recurse infinitely #141

Workflow file for this run

name: Windows-latest
on: [push, pull_request]
jobs:
build-and-test:
strategy:
matrix:
go-version: [1.18]
runs-on: windows-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Build
run: go build cmd/arc/main.go
- name: Test
run: go test -v -race ./...