Skip to content

General improvements for maintainability #28

General improvements for maintainability

General improvements for maintainability #28

Workflow file for this run

name: Test
on:
push:
branches:
- master
paths:
- '**.go'
pull_request:
branches:
- '**'
paths:
- '**.go'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
# Fetch all refs and full history for pull request analysis and blame information, respectively
- run: git fetch --prune --unshallow
- name: "Run test coverage"
uses: "docker://golang:1.21.6-bullseye"
env:
GO111MODULE: "on"
with:
entrypoint: make
args: test