feat(buildtool): add the gofixpath subcommand #4
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
# Ensures that ./internal/cmd/buildtool goproxy {command} [arguments] downloads the correct | |
# version of go and executes {command} with [arguments]. | |
name: goproxy | |
on: | |
push: | |
branches: | |
- "release/**" | |
- "fullbuild" | |
- "goproxybuild" | |
- "master" | |
tags: | |
- "v*" | |
pull_request: | |
schedule: | |
- cron: "17 7 * * *" | |
jobs: | |
build_with_specific_go_version: | |
strategy: | |
matrix: | |
goversion: ["1.19", "1.20", "1.21"] | |
system: [ubuntu-latest, macos-latest] | |
runs-on: "${{ matrix.system }}" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: "${{ matrix.goversion }}" | |
- run: go run ./internal/cmd/buildtool goproxy go run ./internal/cmd/buildtool generic miniooni |