Skip to content

Releases: atc0005/go-ci

Release v0.1.1

31 Jul 12:34
4707c52
Compare
Choose a tag to compare

Changed

  • lint-only image
    • swap base image from golang and alpine to golangci/golangci-lint
      • the intent is to provide a working environment for golangci-lint

Fixed

  • lint-only image
    • golangci-lint requires working go environment

References

Release v0.1.0

31 Jul 11:17
0a51027
Compare
Choose a tag to compare

Added

  • Add Docker containers for linting, testing, building in place of
    actions/setup-go provided environment currently used by most of my Go
    projects

    • "old stable"
      • Go 1.13.x series (currently)
    • "stable"
      • Go 1.14.x series (currently)
    • "linting-only"
      • bundles staticcheck, golangci-lint linting tools into a thin image
    • "unstable"
      • Go 1.15rc1 (currently)
  • Include common linting tools used by my Go projects

    • staticcheck, golangci-lint
  • Add GitHub Actions workflows

    • lint Markdown documentation
    • lint Dockerfile files
  • Add Dependabot updates

    • GitHub Actions
    • Go modules
      • using a "trick" to have a tools module that depends on the linting
        tools that we include in our container images
    • Dockerfile base images

References