Skip to content

add services getter #16

add services getter

add services getter #16

Workflow file for this run

name: test
on:
push:
tags:
- v*
branches:
- master
- staging
- dev
pull_request:
jobs:
test:
name: go test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version-file: "./go.mod"
cache: true
- name: Set up gotestfmt
uses: haveyoudebuggedit/gotestfmt-action@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Run tests
run: |
set -euo pipefail
go test -json -v ./... 2>&1 | tee /tmp/gotest.log | gotestfmt