diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index b5402a0..e31c986 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -7,7 +7,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - go: ["1.19.x","1.18.x"] # code works with 1.3.x but we need 1.7.x for Benchmark.Run + go: ["1.19.x", "1.18.x"] # code works with 1.3.x but we need 1.7.x for Benchmark.Run steps: - name: Setup Go ${{ matrix.go }} @@ -18,10 +18,6 @@ jobs: - name: Check out code into the Go module directory uses: actions/checkout@v4 - with: - path: go/src/github.com/magiconair/properties - name: Run Tests (GOPATH) run: go test ./... - env: - GOPATH: /home/runner/work/properties/go