up #156
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: "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" |