Skip to content

slog: structured logging #2

slog: structured logging

slog: structured logging #2

Workflow file for this run

name: CI
on:
push:
branches:
- "master"
pull_request:
branches:
- "*"
defaults:
run:
shell: bash
env:
# go needs absolute directories, using the $HOME variable doesn't work here.
GOCACHE: /home/runner/work/go/pkg/build
GOPATH: /home/runner/work/go
GO_VERSION: 1.22.3
jobs:
########################
# run unit tests
########################
unit-test:
name: run unit tests
runs-on: ubuntu-latest
steps:
- name: git checkout
uses: actions/checkout@v3
- name: go cache
uses: actions/cache@v3
with:
path: /home/runner/work/go
key: btclog-${{ runner.os }}-go-${{ env.GO_VERSION }}-${{ github.job }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
btclog-${{ runner.os }}-go-${{ env.GO_VERSION }}-${{ github.job }}-${{ hashFiles('**/go.sum') }}
btclog-${{ runner.os }}-go-${{ env.GO_VERSION }}-${{ github.job }}-
btclog-${{ runner.os }}-go-${{ env.GO_VERSION }}-
btclog-${{ runner.os }}-go-
- name: setup go ${{ env.GO_VERSION }}
uses: actions/setup-go@v3
with:
go-version: '~${{ env.GO_VERSION }}'
- name: run unit tests
run: make unit