Skip to content

Merge pull request #12 from nrfta/chore/add-slog-to-error-reporting #29

Merge pull request #12 from nrfta/chore/add-slog-to-error-reporting

Merge pull request #12 from nrfta/chore/add-slog-to-error-reporting #29

Workflow file for this run

name: CI
on:
push:
branches:
- main
- "v*"
pull_request: {}
jobs:
test:
name: Tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
go-version: [1.21.x]
os: [ubuntu-latest, macos-latest, windows-latest]
env:
ENV: test
steps:
- uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{matrix.go-version}}
- name: Tests
run: go test -v ./...