General improvements for maintainability #27
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- '**.go' | |
pull_request: | |
branches: | |
- '**' | |
paths: | |
- '**.go' | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
# 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 |