Skip to content

ci: Switch from goreleaser to release-please. #12

ci: Switch from goreleaser to release-please.

ci: Switch from goreleaser to release-please. #12

Workflow file for this run

name: Go
on:
push:
branches: [main]
pull_request:
jobs:
lint:
name: "Go: Lint"
uses: ./.github/workflows/go-lint.yaml
build:
name: "Go: Build"
uses: ./.github/workflows/go-build.yaml
test:
name: "Go: Test"
uses: ./.github/workflows/go-test.yaml
secrets: inherit
checks-passed:
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
name: "Checks Passed"
runs-on: ubuntu-latest
needs: [lint, build, test]
steps:
- run: echo "All required passed!" >> $GITHUB_STEP_SUMMARY