Skip to content

New: Add delete image shortcut and button to lightbox #8383

New: Add delete image shortcut and button to lightbox

New: Add delete image shortcut and button to lightbox #8383

Workflow file for this run

name: Lint (golangci-lint)
on:
push:
tags:
- v*
branches:
- master
- develop
- 'releases/**'
pull_request:
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
# no tags or depth needed for lint
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
# generate-backend runs natively (just go generate + touch-ui) — no Docker needed
- name: Generate Backend
run: make generate-backend
## WARN
## using v1, update in a later PR
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v8
with:
version: v2.11.4