Skip to content

first queue estimation #1

first queue estimation

first queue estimation #1

Workflow file for this run

name: Run lint & unit tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
name: "Run unit tests"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: stable
- name: Install dependencies
run: go mod download
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
args: --timeout 10m
- name: Run unit tests
run: make test