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

docs: adding space for features that need documentation #39

docs: adding space for features that need documentation

docs: adding space for features that need documentation #39

Workflow file for this run

name: Testing
on:
push:
branches:
- main
pull_request:
jobs:
tests:
name: tests
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.22
uses: actions/setup-go@v5
with:
go-version: "1.22"
id: go
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('go.sum') }}
restore-keys: |
${{ runner.os }}-go
- name: test
run: |
go test --cover ./... -v