Skip to content

Merge pull request #1 from penguinland/modular_main #8

Merge pull request #1 from penguinland/modular_main

Merge pull request #1 from penguinland/modular_main #8

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