Skip to content

feat : add support for bytearray/bitmap to append (#1286) #3113

feat : add support for bytearray/bitmap to append (#1286)

feat : add support for bytearray/bitmap to append (#1286) #3113

Workflow file for this run

name: linter
on:
push:
branches: [master]
paths:
- '**/*.go'
pull_request:
branches: [master]
paths:
- '**/*.go'
permissions:
contents: read
pull-requests: read
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-golint-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-golint-
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.60.1