How to bootstrap GitHub Actions CI for a Go project

แชร์
ฝัง
  • เผยแพร่เมื่อ 1 ม.ค. 2025

ความคิดเห็น • 8

  • @coffeeintocode
    @coffeeintocode ปีที่แล้ว +2

    Thanks. This is really good. Ive been super frustarted by Github Actions for a while now. My own fault for not investing enough time in learning them, but this is a super useful resource

  • @GabrielPozo
    @GabrielPozo ปีที่แล้ว +1

    Thanks for sharing!!!

  • @thismotta
    @thismotta ปีที่แล้ว +1

    Nice content! I use GitHub Actions on my job's org to integrate the repositories with SonarCloud and check PRs for semantic commits.
    Can you make a video about good practices for updating a Go module to a major version like v2, v3, and so on?

    • @boldlygo
      @boldlygo  ปีที่แล้ว +1

      Nice suggestion. I'll add it to my list.

  • @g_rock_official
    @g_rock_official ปีที่แล้ว

    Thanks for the great video! Would it make sense to combine the linter and test workflow into a single one so that we don't have to check out the code twice and share the same runner?

    • @boldlygo
      @boldlygo  ปีที่แล้ว +1

      You certainly could do that.
      The reason I usually keep them separate, though, is because I want to run both for every PR, even of one fails. And it's easier to see the failures if they are in separate jobs.
      But if that doesn't apply to you, by all means, you can combine them.

  • @eriktank4877
    @eriktank4877 ปีที่แล้ว

    Why did you manually add the license instead of selecting it while creating the repo? Thanks for the great video on starting a project.

    • @boldlygo
      @boldlygo  ปีที่แล้ว +1

      Because I wanted to demonstrate the entire process.