Skip to content
Latchkey

SDK Test workflow (spaceandtimefdn/SxT-Go-SDK)

The SDK Test workflow from spaceandtimefdn/SxT-Go-SDK, explained and optimized by Latchkey.

C

CI health: C - fair

Point runs-on at Latchkey and get run de-duplication, job timeouts, self-healing for flaky steps, and up to 58% lower cost, applied automatically.

Grade your own workflow free or run it on Latchkey →
Source: spaceandtimefdn/SxT-Go-SDK.github/workflows/sdk_test.ymlLicense MITView source

What it does

This is the SDK Test workflow from the spaceandtimefdn/SxT-Go-SDK 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)
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go

name: SDK Test

on:
  push:
    branches: [ "main" ]
  pull_request:
    branches: [ "main" ]

env:
  BASEURL_DISCOVERY: ${{ vars.BASEURL_DISCOVERY }}
  BASEURL_GENERAL: ${{ vars.BASEURL_GENERAL }}
  SCHEME : ${{ vars.SCHEME }}
  JOINCODE : ${{ secrets.JOINCODE }}
  USERID : ${{ secrets.TEST_TRIAL_USERID }}
  TEST_TRIAL_USERID: ${{ secrets.TEST_TRIAL_USERID }}
  TEST_TRIAL_PRIVKEY: ${{ secrets.TEST_TRIAL_PRIVKEY }}
  TEST_TRIAL_PUBKEY: ${{ secrets.TEST_TRIAL_PUBKEY }}

jobs:

  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v4

    - name: Set up Go
      uses: actions/setup-go@v4
      with:
        go-version: '1.20'

    - name: Install dependencies
      run: go get .

    - name: Test
      run: go test -v ./...

    - name: Environment list
      run: env

The same workflow, on Latchkey

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

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
 
name: SDK Test
 
on:
  push:
    branches: [ "main" ]
  pull_request:
    branches: [ "main" ]
 
env:
  BASEURL_DISCOVERY: ${{ vars.BASEURL_DISCOVERY }}
  BASEURL_GENERAL: ${{ vars.BASEURL_GENERAL }}
  SCHEME : ${{ vars.SCHEME }}
  JOINCODE : ${{ secrets.JOINCODE }}
  USERID : ${{ secrets.TEST_TRIAL_USERID }}
  TEST_TRIAL_USERID: ${{ secrets.TEST_TRIAL_USERID }}
  TEST_TRIAL_PRIVKEY: ${{ secrets.TEST_TRIAL_PRIVKEY }}
  TEST_TRIAL_PUBKEY: ${{ secrets.TEST_TRIAL_PUBKEY }}
 
concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: true
 
jobs:
 
  build:
    timeout-minutes: 30
    runs-on: latchkey-small
    steps:
    - uses: actions/checkout@v4
 
    - name: Set up Go
      uses: actions/setup-go@v4
      with:
        go-version: '1.20'
 
    - name: Install dependencies
      run: go get .
 
    - name: Test
      run: go test -v ./...
 
    - name: Environment list
      run: env
 
 

What changed

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