Skip to content

track go tools with go mod #151

track go tools with go mod

track go tools with go mod #151

Workflow file for this run

---
name: "Lint"
on: # yamllint disable-line rule:truthy
push:
pull_request:
workflow_dispatch:
jobs:
Lint:
runs-on: "ubuntu-24.04"
steps:
- uses: "actions/checkout@v4"
- uses: actions/setup-go@v5
with:
go-version: "1.24.0"
- name: "install shell linting accessories"
run: |
sudo apt-get update
sudo apt-get install -y shellcheck zsh
- name: "install kirill"
run: |
echo "${HOME}/bin" >>"$GITHUB_PATH"
mkdir -p "$HOME/bin"
curl -Lo "$HOME/bin/kirill" https://raw.githubusercontent.com/mcandre/kirill/v0.0.1/bin/kirill
chmod +x "$HOME/bin/kirill"
- run: "make -f install.mk -j 4"
- run: "make lint"