diff --git a/.github/workflows/buildtest.yaml b/.github/workflows/buildtest.yaml index e5177c9a0..038a29361 100644 --- a/.github/workflows/buildtest.yaml +++ b/.github/workflows/buildtest.yaml @@ -69,7 +69,6 @@ jobs: env: GOOS: ${{ matrix.targetos }} GOARCH: ${{ matrix.arch }} - - name: Setup Golang caches uses: actions/cache@v3 with: @@ -90,9 +89,9 @@ jobs: excludelist+=" $(find ./ -type f -name '*.pb.go')" excludelist+=" $(find ./ -type f -name '*.pb.gw.go')" excludelist+=" $(find ./ -type f -path './test/*.go')" - excludelist+=" $(find ./ -type f -path './osmosis-types/*.go')" + excludelist+=" $(find ./ -type f -path './third-party-chains/*.go')" for filename in ${excludelist}; do - filename=$(echo $filename | sed 's/^./github.com\/ingenuity-build\/quicksilver/g') + filename=$(echo $filename | sed 's/^./github.com\/quicksilver-zone\/quicksilver/g') echo "Excluding ${filename} from coverage report..." sed -i.bak "/$(echo $filename | sed 's/\//\\\//g')/d" coverage.txt done