Skip to content

K8s KIND & OTLP

K8s KIND & OTLP #102

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
- qa
- dev
pull_request:
branches: [ '**' ]
jobs:
test:
runs-on: ubuntu-latest
services:
dind:
image: docker:23.0-rc-dind-rootless
ports:
- 2375:2375
name: Test
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.22
- name: Build
run: go build -v ./...
- name: Test
run: |
make install-tools
echo "${HOME}/go/bin" >> $GITHUB_PATH
make test
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: ShatteredRealms/go-backend