Skip to content

fix: wrong file extension #1

fix: wrong file extension

fix: wrong file extension #1

Workflow file for this run

---
name: Unit tests
on:
push:
paths-ignore:
- 'README.md'
- 'Makefile'
jobs:
gotest:
name: Run unit tests
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v4
- name: setup Golang
uses: actions/setup-go@v5
with:
go-version: '>=1.16.3'
cache: true
- run: go test -v ./...