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

Create fosslight.yaml #1

Create fosslight.yaml

Create fosslight.yaml #1

Workflow file for this run

name: FossLight
on:
push:
branches:
- main
jobs:
fosslight:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set Up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install FossLight
run: |
pip install fosslight
- name: Run FossLight
run: fosslight analyze --output-report fosslight-report.json
- name: Upload FossLight Report
uses: actions/upload-artifact@v2
with:
name: fosslight-report
path: fosslight-report.json