Skip to content

Update fw-set edit commands to add/remove firmware from fw-sets #38

Update fw-set edit commands to add/remove firmware from fw-sets

Update fw-set edit commands to add/remove firmware from fw-sets #38

Workflow file for this run

name: lint, test and build image
on: [pull_request, push]
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: '1.20'
- name: Checkout code
uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
args: --config .golangci.yml --timeout 2m
version: v1.52.2
- name: Test
run: go test ./...
build:
runs-on: ubuntu-latest
needs: [lint-test]
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Checkout code
uses: actions/checkout@v3
- name: build binary
run: make build-linux
- name: Inspect action SARIF report
run: cat ${{ steps.scan.outputs.sarif }}
if: always()