diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..eaa349a --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,16 @@ +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Generate SBOM + uses: CycloneDX/gh-python-generate-sbom@v2 + with: + input: ./requirements.txt + output: ./bom.json + format: json +