Skip to content
This repository has been archived by the owner on Aug 6, 2024. It is now read-only.

docs: add hint to test readme #33

docs: add hint to test readme

docs: add hint to test readme #33

Workflow file for this run

name: Tests
on:
push:
branches:
- main
- dev
jobs:
test-go-code:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21.4'
- name: Install Dependencies
run: go get -v -t -d ./...
- name: Test Go Code
run: go test -cover ./pkg/...