Skip TestFastWalk_ErrPermission as root user #160
Workflow file for this run
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: 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 |