Skip to content

update asdf past v0.16.1 https://stackoverflow.com/a/79416715/350106 #158

update asdf past v0.16.1 https://stackoverflow.com/a/79416715/350106

update asdf past v0.16.1 https://stackoverflow.com/a/79416715/350106 #158

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"
- name: "provision dev tools"
run: "make -f install.mk -j 4"
- run: "make lint"