Skip to content
Latchkey

Test workflow (protocolbuffers/protobuf-go)

The Test workflow from protocolbuffers/protobuf-go, 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: protocolbuffers/protobuf-go.github/workflows/test.ymlLicense BSD-3-ClauseView source

What it does

This is the Test workflow from the protocolbuffers/protobuf-go repository, a real project running GitHub Actions. It is shown here with attribution under its BSD-3-Clause license.

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

The workflow

workflow (.yml)
on: [push]
name: Test
jobs:
  test:
    strategy:
      matrix:
        # This is just a version to compile the integration_test.go; see
        # golangVersions in that file for the list of actual Go versions used.
        go-version: [1.x]
        os: [ubuntu-latest] # TODO: Add [macos-latest, windows-latest]
    runs-on: ${{ matrix.os }}
    steps:
    - name: Install Linux dependencies
      if: runner.os == 'Linux'
      run: sudo apt-get -y install autoconf automake libtool curl make g++ unzip
    - name: Checkout code
      uses: actions/checkout@v3
    - name: Install Go
      uses: actions/setup-go@v4
      with:
        go-version: ${{ matrix.go-version }}
    - name: Cache dependencies
      uses: actions/cache@v3
      with:
        path: |
          .cache
          ~/.cache/bazel
        key: ${{ runner.os }}-${{ hashFiles('integration_test.go') }}
    - name: Test
      env:
        # Protobuf 30 does not yet support anything newer than Bazel 7
        USE_BAZEL_VERSION: 7.x
      run: go test -run='^TestIntegration$' -v -timeout=60m -count=1 -failfast "$@"

The same workflow, on Latchkey

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

on: [push]
name: Test
concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: true
 
jobs:
  test:
    timeout-minutes: 30
    strategy:
      matrix:
        # This is just a version to compile the integration_test.go; see
        # golangVersions in that file for the list of actual Go versions used.
        go-version: [1.x]
        os: [ubuntu-latest] # TODO: Add [macos-latest, windows-latest]
    runs-on: ${{ matrix.os }}
    steps:
    - name: Install Linux dependencies
      if: runner.os == 'Linux'
      run: sudo apt-get -y install autoconf automake libtool curl make g++ unzip
    - name: Checkout code
      uses: actions/checkout@v3
    - name: Install Go
      uses: actions/setup-go@v4
      with:
        go-version: ${{ matrix.go-version }}
    - name: Cache dependencies
      uses: actions/cache@v3
      with:
        path: |
          .cache
          ~/.cache/bazel
        key: ${{ runner.os }}-${{ hashFiles('integration_test.go') }}
    - name: Test
      env:
        # Protobuf 30 does not yet support anything newer than Bazel 7
        USE_BAZEL_VERSION: 7.x
      run: go test -run='^TestIntegration$' -v -timeout=60m -count=1 -failfast "$@"
 

What changed

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 1 job per trigger. On Latchkey the same minutes cost up to 58% less than GitHub-hosted, with zero queue time.

Actions used in this workflow