Skip to content

fix get_ssh_key script #20

fix get_ssh_key script

fix get_ssh_key script #20

Workflow file for this run

name: prepare
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: "1.19"
- name: Verify code formatting
run: |
go install mvdan.cc/sh/v3/cmd/shfmt@latest
shfmt --list --diff ./bin/* || exit 1
- name: Run linter
run: |
sudo apt install shellcheck
shellcheck ./bin/* || exit 1