Skip to content

Commit 159c5ac

Browse files
authored
ci: full setup python for fossa scan (#1495)
1 parent 1247aba commit 159c5ac

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

.github/workflows/fossa.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,16 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v4
18-
17+
- name: Checkout
18+
uses: actions/checkout@v4
19+
- name: Set up Python ${{ matrix.python-version }}
20+
uses: actions/setup-python@v4
21+
with:
22+
python-version: ${{ matrix.python-version }}
23+
- name: Install dependencies
24+
run: |
25+
python -m pip install --upgrade pip
26+
python -m pip install -e .[dev]
1927
- uses: fossas/fossa-action@main
2028
with:
2129
api-key: ${{ secrets.FOSSA_API_KEY }}

0 commit comments

Comments
 (0)