ci: update release workflow to use Go 1.26 and include checksums #10
This file contains hidden or 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
| # Build and test workflow for Launchpad | |
| # Triggered on PRs and pushes to main. | |
| name: Build and Test | |
| permissions: | |
| contents: read | |
| packages: write # Required for uploading artifacts | |
| on: | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| name: Build Binaries | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.25" | |
| - name: Build binaries | |
| run: | | |
| mkdir -p dist | |
| platforms=("linux/amd64" "linux/arm64" "windows/amd64" "windows/arm64" "darwin/amd64" "darwin/arm64") | |
| for platform in "${platforms[@]}"; do | |
| GOOS=${platform%/*} | |
| GOARCH=${platform#*/} | |
| output_name="dist/launchpad_${GOOS}_${GOARCH}" | |
| if [ "$GOOS" = "windows" ]; then | |
| output_name+=".exe" | |
| fi | |
| echo "Building $output_name" | |
| GOOS=$GOOS GOARCH=$GOARCH go build -o "$output_name" ./main.go | |
| done | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: launchpad-binaries | |
| path: dist/ | |
| test: | |
| name: Run Tests | |
| runs-on: ubuntu-latest | |
| needs: build | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.22" | |
| - name: Run unit tests | |
| run: go test -v ./... | |
| - name: Run integration tests | |
| run: go test -v -tags=integration ./test/integration |