Skip to content

update go

update go #146

Workflow file for this run

---
name: "Lint"
on: # yamllint disable-line rule:truthy
push:
pull_request:
jobs:
Lint:
runs-on: "ubuntu-24.04"
steps:
- uses: actions/setup-go@v5
with:
go-version: '1.23.3'
- run: "echo \"${HOME}/bin\" >> \"$GITHUB_PATH\""
- uses: "actions/checkout@v4"
- run: "sudo apt-get update"
- run: "sudo apt-get install -y bash curl python3-venv shellcheck zsh"
- run: "mkdir -p \"$HOME/bin\""
- run: "curl -Lo \"$HOME/bin/kirill\" https://raw.githubusercontent.com/mcandre/kirill/v0.0.1/bin/kirill"
- run: "chmod +x \"$HOME/bin/kirill\""
- run: "./install"
- run: "./build lint"