Skip to content

feat: add possiblity to set username #13

feat: add possiblity to set username

feat: add possiblity to set username #13

Workflow file for this run

name: Unit tests
on:
push:
paths:
- '**.go'
pull_request:
branches:
- main
paths:
- '**.go'
jobs:
unit_tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- name: Read go-version
id: go-version
uses: juliangruber/read-file-action@02bbba9876a8f870efd4ad64e3b9088d3fb94d4b # v1.1.6
with:
path: ./.go-version
- name: Set up Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: ${{ steps.go-version.outputs.content }}
- name: Go mod verify
run: go mod verify
- name: Run unit tests
run: make test