Skip to content

Package overmind as Ruby gem with tmux included (#176) #40

Package overmind as Ruby gem with tmux included (#176)

Package overmind as Ruby gem with tmux included (#176) #40

Workflow file for this run

name: Lint
on:
- push
- pull_request
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.21.x"]
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Cache mods
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }}
- name: Download mods
run: go mod download
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.54.1
args: --timeout 5m0s
skip-cache: true