Skip to content

fs: Skip files named . during walk (#384) #142

fs: Skip files named . during walk (#384)

fs: Skip files named . during walk (#384) #142

Workflow file for this run

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