feat: handling of same fix version with different elsa ids and include elsa ids for aqua storage,remove them before saving into oss db #1973
Workflow file for this run
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: Go | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Lint | |
uses: golangci/[email protected] | |
with: | |
version: v1.54 | |
args: --verbose | |
- name: Test | |
run: | | |
go test -v ./... |