diff --git a/.github/workflows/build-and-test-alpha.yml b/.github/workflows/build-and-test-alpha.yml index 570efc2ba..d43e680d6 100644 --- a/.github/workflows/build-and-test-alpha.yml +++ b/.github/workflows/build-and-test-alpha.yml @@ -108,7 +108,17 @@ jobs: - name: Setup Go uses: actions/setup-go@v3 with: - go-version: ${{ matrix.go-version }} + go-version: ${{ matrix.go }} + + - name: Setup Golang caches + uses: actions/cache@v3 + with: + path: | + ~/.cache/go-build + ~/go/pkg/mod + key: ${{ runner.os }}-golang-${{ hashFiles('**/go.sum') }} + restore-keys: | + ${{ runner.os }}-golang- - name: Build Wails3 CLI run: | diff --git a/v3/Taskfile.yaml b/v3/Taskfile.yaml index 0d235648c..6cd2d787a 100644 --- a/v3/Taskfile.yaml +++ b/v3/Taskfile.yaml @@ -134,8 +134,6 @@ tasks: test:example: dir: 'examples/{{.DIR}}' - sources: - - 'examples/{{.DIR}}/**/*.go' cmds: - echo "Building example {{.DIR}}" - go mod tidy