We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 750fab2 commit 71a751cCopy full SHA for 71a751c
2 files changed
.github/workflows/all_tests.yml
@@ -43,7 +43,7 @@ jobs:
43
if: runner.os == 'Linux'
44
run: |
45
sudo apt-get update
46
- sudo apt-get install -y libncurses5 libaio1 libnuma1 bash-completion
+ sudo apt-get install -y libncurses6 libaio1t64 libnuma1 bash-completion
47
- name: Unit tests
48
run: ./test/go-unit-tests.sh
49
.golangci.yml
@@ -15,6 +15,11 @@ linters:
15
linters-settings:
16
errcheck:
17
check-type-assertions: false
18
+ exclude-functions:
19
+ - (*github.com/nightlyone/lockfile.Lockfile).Unlock
20
+ gosec:
21
+ excludes:
22
+ - G115 # integer overflow int64->uint64 on file sizes passed to humanize.Bytes — safe
23
24
issues:
25
exclude-use-default: true
0 commit comments