-
Notifications
You must be signed in to change notification settings - Fork 10
41 lines (38 loc) · 1.04 KB
/
pr.yml
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
name: HwameiStor PR
on:
pull_request:
branches:
- main
paths:
- "pkg/**"
- "test/**"
jobs:
pr-test:
runs-on: ["vsphere"]
timeout-minutes: 180
steps:
- name: delete
run: |
sudo rm -rf rm -rf /github/actions-runner/_work/hwameistor-operator/hwameistor-operator/_build
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install Go
run: |
wget https://golang.org/dl/go1.21.11.linux-amd64.tar.gz
sudo tar -xvf go1.21.11.linux-amd64.tar.gz -C /usr/local
export PATH=$PATH:/usr/local/go/bin
go version
- name: Install gosec
run: |
export PATH=$PATH:/usr/local/go/bin
go install github.com/securego/gosec/v2/cmd/gosec@latest
gosec --version
- name: Run gosec security scan
run: |
gosec -severity high -confidence high ./... || exit 1
- name: pr test
env:
E2E_TESTING_LEVEL: "pr-e2e"
run: make pr-test