Add customized mapper #254
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: FOSSA | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: "^1.16.x" | |
- run: go version | |
# Runs a set of commands to initialize and analyze with FOSSA | |
- name: run FOSSA analysis | |
env: | |
# FOSSA Push-Only API Token | |
FOSSA_API_KEY: '87a9c35cbed49f802657f98b60134ee8' | |
run: | | |
export GOPATH=$HOME/go | |
export PATH=$PATH:$(go env GOPATH)/bin | |
curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install.sh | sudo bash | |
fossa init | |
fossa analyze |