Skip to content

feat: initial implementation of go-tlog with examples, CI and README #6

feat: initial implementation of go-tlog with examples, CI and README

feat: initial implementation of go-tlog with examples, CI and README #6

Workflow file for this run

name: testing
on:
push:
branches: [ master ]
pull_request:
branches: [ '**' ]
workflow_dispatch:
jobs:
test:
name: Go tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24.x'
check-latest: true
- name: Download deps
run: go mod download
- name: Run tests
run: make test
- name: Run tests with race-detector
run: make test-race