Skip to content

Merge pull request #530 from oxisto/slog #10

Merge pull request #530 from oxisto/slog

Merge pull request #530 from oxisto/slog #10

Workflow file for this run

name: Go
on:
push:
paths:
- "**.go"
pull_request:
paths:
- "**.go"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 'oldstable'
- name: Build
run: go build -v ./cmd/...
- name: Tests
run: go test -v ./...