Skip to content

Fixing github actions jobs #27

Fixing github actions jobs

Fixing github actions jobs #27

Workflow file for this run

name: test
on:
push:
branches:
- '**'
permissions:
contents: read
jobs:
unit:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Golang
uses: actions/setup-go@v4
with:
go-version: 1.21.x
cache-dependency-path: |
**/go/sum
**/go.mod
- name: Run unit tests
run: make test