Skip to content

Add tests workflow & dependencies on lint & test #1

Add tests workflow & dependencies on lint & test

Add tests workflow & dependencies on lint & test #1

Workflow file for this run

name: tests
on:
workflow_call:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- run: make unit-tests