Skip to content
Latchkey

go workflow (kkdai/youtube)

The go workflow from kkdai/youtube, explained and optimized by Latchkey.

C

CI health: C - fair

Run this on Latchkey for self-healing, caching, and up to 58% lower cost.

Grade your own workflow free or run it on Latchkey →
Source: kkdai/youtube.github/workflows/go.yamlLicense MITView source

What it does

This is the go workflow from the kkdai/youtube repository, a real project running GitHub Actions. It is shown here with attribution under its MIT license.

Below, Latchkey shows a faster, safer version produced by its optimization engine.

The workflow

workflow (.yml)
name: go

on:
- push
- pull_request

jobs:
  lint:
    strategy:
      matrix:
        platform: [ubuntu-24.04]
        go-version: [1.26.x, 1.x]
    runs-on: ${{ matrix.platform }}
    name: Linters (Static Analysis) for Go
    steps:
      - name: Checkout code into the Go module directory.
        uses: actions/checkout@v3

      - name: Install Go
        uses: actions/setup-go@v4
        with:
          go-version: ${{ matrix.go-version }}

      - name: Linting & vetting.
        run: make lint
  test:
    strategy:
      matrix:
        platform: [ubuntu-24.04]
        go-version: [1.26.x, 1.x]
    runs-on: ${{ matrix.platform }}
    name: integration tests
    env:
      GOBIN: /tmp/.bin
    steps:
      - name: Check out code into the Go module directory.
        uses: actions/checkout@v3

      - name: Install Go.
        uses: actions/setup-go@v4
        with:
          go-version: ${{ matrix.go-version }}

      - name: Install ffmpeg
        run: |
            sudo apt-get update
            sudo apt-get install ffmpeg

      - name: Run tests
        run: make test-integration

      - name: Archive artifacts
        uses: actions/upload-artifact@v4
        with:
          name: output
          path: output

      - name: Upload coverage report
        uses: codecov/codecov-action@v3
        with:
          file: coverage.out

The same workflow, on Latchkey

Removes redundant runs and caps runaway jobs. Added and changed lines are highlighted.

name: go
 
on:
- push
- pull_request
 
concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: true
 
jobs:
  lint:
    timeout-minutes: 30
    strategy:
      matrix:
        platform: [ubuntu-24.04]
        go-version: [1.26.x, 1.x]
    runs-on: ${{ matrix.platform }}
    name: Linters (Static Analysis) for Go
    steps:
      - name: Checkout code into the Go module directory.
        uses: actions/checkout@v3
 
      - name: Install Go
        uses: actions/setup-go@v4
        with:
          go-version: ${{ matrix.go-version }}
 
      - name: Linting & vetting.
        run: make lint
  test:
    timeout-minutes: 30
    strategy:
      matrix:
        platform: [ubuntu-24.04]
        go-version: [1.26.x, 1.x]
    runs-on: ${{ matrix.platform }}
    name: integration tests
    env:
      GOBIN: /tmp/.bin
    steps:
      - name: Check out code into the Go module directory.
        uses: actions/checkout@v3
 
      - name: Install Go.
        uses: actions/setup-go@v4
        with:
          go-version: ${{ matrix.go-version }}
 
      - name: Install ffmpeg
        run: |
            sudo apt-get update
            sudo apt-get install ffmpeg
 
      - name: Run tests
        run: make test-integration
 
      - name: Archive artifacts
        uses: actions/upload-artifact@v4
        with:
          name: output
          path: output
 
      - name: Upload coverage report
        uses: codecov/codecov-action@v3
        with:
          file: coverage.out
 

What changed

1 third-party action is referenced by a movable tag. Pin it to the commit SHA (Latchkey resolves and applies this automatically) so a repointed tag cannot change what runs.

What Latchkey heals here

This workflow has steps that commonly fail on transient issues (network, registries, flaky browsers). On Latchkey managed runners they are detected, retried, and self-healed instead of failing your build:

This workflow runs 2 jobs (4 with the matrix expanded) per trigger. On Latchkey the same minutes cost up to 58% less than GitHub-hosted, with zero queue time.

Actions used in this workflow