-
Notifications
You must be signed in to change notification settings - Fork 153
54 lines (51 loc) · 1.41 KB
/
golang-linter.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: golangci-lint
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
pull-requests: read
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: "0"
- name: Install system deps
run: |
sudo apt-get update && sudo apt-get install -y --no-install-recommends \
build-essential \
dh-autoreconf \
libjansson-dev \
libmagic-dev \
pkg-config \
libpcap-dev \
libcap-dev \
curl \
bison
- name: Install yara
run: |
cd /tmp
wget https://github.com/VirusTotal/yara/archive/refs/tags/v4.3.2.tar.gz
tar -zxf v4.3.2.tar.gz
cd yara-4.3.2
./bootstrap.sh
./configure --prefix=$HOME/.local/yara --disable-dotnet --enable-magic --enable-cuckoo --disable-shared --enable-static
make -j$(nproc)
make install
cd $HOME/.local
tar -czf yara.tar.gz yara
echo "PKG_CONFIG_PATH=$HOME/.local/yara/lib/pkgconfig" >> "$GITHUB_ENV"
- uses: actions/setup-go@v4
with:
go-version: '1.21'
cache: false
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.55
only-new-issues: true