Skip to content

refactor: pipeline and linter #1

refactor: pipeline and linter

refactor: pipeline and linter #1

Workflow file for this run

name: Unit testing
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: 1.21
- name: Unit tests
run: make unit_test
- name: Race tests
run: make race_test