From 3ebe2beaba3cfb1c34aad1d08d83ad5ee973e65b Mon Sep 17 00:00:00 2001 From: Minh Nguyen Cong Date: Wed, 17 Jun 2026 20:50:59 +0200 Subject: [PATCH 1/2] test: fossa debug --- .github/workflows/fossa.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/fossa.yml b/.github/workflows/fossa.yml index 3da49d58..c2565f89 100644 --- a/.github/workflows/fossa.yml +++ b/.github/workflows/fossa.yml @@ -20,3 +20,4 @@ jobs: with: api-key: ${{ secrets.FOSSA_API_KEY }} branch: ${{ github.head_ref || github.ref_name }} + debug: true From fd9942cffeef59cbe2b6b9fe1c1512cc1b14e7f8 Mon Sep 17 00:00:00 2001 From: Minh Nguyen Cong Date: Tue, 23 Jun 2026 15:14:21 +0200 Subject: [PATCH 2/2] Enhance FOSSA workflow with Python setup Added steps to set up Python and install dependencies before running FOSSA action. --- .github/workflows/fossa.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/fossa.yml b/.github/workflows/fossa.yml index c2565f89..01efe1db 100644 --- a/.github/workflows/fossa.yml +++ b/.github/workflows/fossa.yml @@ -14,10 +14,17 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - + - 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 }} - debug: true