Delete consumed and complete segments on load + Close segment file handles #43
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: lint | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
env: | |
GOLANGCILINTVERSION: 1.22.2 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Download golangci-lint | |
run: curl -sL https://github.com/golangci/golangci-lint/releases/download/v${GOLANGCILINTVERSION}/golangci-lint-${GOLANGCILINTVERSION}-linux-amd64.tar.gz | tar xz | |
- name: Run golangci-lint | |
run: golangci-lint-${GOLANGCILINTVERSION}-linux-amd64/golangci-lint run |