Skip to content

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

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

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

Workflow file for this run

name: Macos-latest
on: [push, pull_request]
jobs:
build-and-test:
strategy:
matrix:
go-version: [1.18]
runs-on: macos-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 ./...