Skip to content

Merge pull request #8 from observeinc/alew/update-config-path #32

Merge pull request #8 from observeinc/alew/update-config-path

Merge pull request #8 from observeinc/alew/update-config-path #32

Workflow file for this run

name: Run Go tests
on:
push:
tags:
- v*
branches:
- main
pull_request:
workflow_dispatch:
inputs:
branch:
description: "The branch to attempt to build"
required: true
default: "main"
jobs:
test:
strategy:
matrix:
go: [ 1.22.x ]
platform: [ ubuntu-latest ]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Checkout code
uses: actions/checkout@v4
- name: Test
run: make go-test