Skip to content
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.

Update README.md (#70) #67

Update README.md (#70)

Update README.md (#70) #67

Workflow file for this run

name: Dependency License Scanning
on:
push:
branches:
- main
- chore/fossa-workflow
defaults:
run:
shell: bash
jobs:
fossa:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Download fossa cli
run: |-
mkdir -p $HOME/.local/bin
curl https://raw.githubusercontent.com/fossas/fossa-cli/master/install-latest.sh | bash -s -- -b $HOME/.local/bin
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Configuration
run: |-
echo -e "version: 3\nproject:\n id: git@github.com:${GITHUB_REPOSITORY}.git" > .fossa.yml
cat .fossa.yml
- name: Upload dependencies
run: FOSSA_TELEMETRY_SCOPE=off fossa analyze --debug
env:
FOSSA_API_KEY: ${{ secrets.FOSSA_API_KEY }}