Skip to content

ci: full setup python for fossa scan (#1495) #11

ci: full setup python for fossa scan (#1495)

ci: full setup python for fossa scan (#1495) #11

Workflow file for this run

name: FOSSA Scan
on:
push:
branches: [main, combined-sdk]
pull_request:
branches: [main, combined-sdk]
permissions:
contents: read
jobs:
fossa:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .[dev]
- uses: fossas/fossa-action@main
with:
api-key: ${{ secrets.FOSSA_API_KEY }}
branch: ${{ github.head_ref || github.ref_name }}