Skip to content

🎨 Add link to examples, spec and unit tests #6

🎨 Add link to examples, spec and unit tests

🎨 Add link to examples, spec and unit tests #6

Workflow file for this run

name: golang-pipeline
on:
push:
branches:
- 'main'
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- run: git fetch --force --tags
- uses: actions/setup-go@v3
with:
go-version: '>=1.19.5'
cache: true
-
name: Run unit tests
run: go test ./...