github.com/charlievieth/fastwalk@v1.0.3/.github/workflows/linux.yml (about) 1 name: Test fastwalk on Linux 2 3 on: 4 push: 5 branches: [ master ] 6 pull_request: 7 branches: [ master ] 8 9 jobs: 10 build: 11 runs-on: ubuntu-latest 12 strategy: 13 matrix: 14 go: [1.21, 1.22] 15 steps: 16 - uses: actions/checkout@v4 17 with: 18 fetch-depth: 0 19 - name: Set up Go 20 uses: actions/setup-go@v5 21 with: 22 go-version: ${{ matrix.go }} 23 - name: Test 24 run: go test ./... 25 - name: Test Race 26 run: go test -race ./...