Feature/2 enable GitHub action for cicd #1
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: Cross compile | |
on: | |
pull_request: | |
branches: [ master, development ] | |
jobs: | |
compile: | |
name: Cross compile binaries | |
runs-on: ubuntu-latest | |
container: | |
image: golangci/golangci-lint:latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install swaggo | |
run: go install github.com/swaggo/swag/cmd/swag@latest | |
- name: Build with make | |
run: | | |
go install github.com/swaggo/swag/cmd/swag@latest | |
go install github.com/CycloneDX/cyclonedx-gomod/cmd/cyclonedx-gomod@latest | |
make compile | |
make sbom |