Skip to content

Skip TestFastWalk_ErrPermission as root user #160

Skip TestFastWalk_ErrPermission as root user

Skip TestFastWalk_ErrPermission as root user #160

Workflow file for this run

name: Test fastwalk on Linux
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
# Test all supported versions on Linux (since it's fast)
matrix:
go: ['1.20', '1.21', '1.22', '1.23']
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Test
run: go test ./...
- name: Test Race
run: go test -race ./...
- name: Test Builds
run: make test_build --jobs=4