Skip to content

fix: prepare v11.18.0 #895

fix: prepare v11.18.0

fix: prepare v11.18.0 #895

Workflow file for this run

---
name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: 1.21
- run: make install
tidy:
name: Tidy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: 1.21
- run: |
go mod tidy
# CHANGES_IN_REPO=$(git status --porcelain)
# if [[ -n "$CHANGES_IN_REPO" ]]; then
# echo "Repository is dirty. Showing 'git status' and 'git --no-pager diff' for debugging now:"
# git status && git --no-pager diff
# exit 1
# fi