Skip to content

fix: force revert

fix: force revert #103

Workflow file for this run

name: Lint Golang
on:
push:
tags:
- v*
branches:
- main
pull_request:
paths:
- '**.go'
- 'go.md'
- 'go.sum'
permissions:
contents: read
concurrency:
group: '${{ github.workflow }} @ ${{ github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run shellcheck
run: make lint-shell
- name: Run shfmt
run: docker run --rm -v $(pwd):/mnt -w /mnt mvdan/shfmt:v3.6.0 -l -d -i 2 .