Skip to content

feat: implement StateBackend with Pebble and RocksDB support #18

feat: implement StateBackend with Pebble and RocksDB support

feat: implement StateBackend with Pebble and RocksDB support #18

Workflow file for this run

# Copyright 2024 Function Stream Org.

Check failure on line 1 in .github/workflows/lint.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/lint.yml

Invalid workflow file

(Line: 35, Col: 9): Unexpected value 'working-directory'
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Lint
on:
pull_request:
jobs:
lint:
name: Run on Ubuntu
runs-on: ubuntu-latest
steps:
- name: Clone the code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: ./operator/go.mod
- name: Run linter
uses: golangci/golangci-lint-action@v6
working-directory: ./operator/
with:
version: v1.63.4