We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1247aba commit 159c5acCopy full SHA for 159c5ac
1 file changed
.github/workflows/fossa.yml
@@ -14,8 +14,16 @@ jobs:
14
runs-on: ubuntu-latest
15
16
steps:
17
- - uses: actions/checkout@v4
18
-
+ - name: Checkout
+ 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]
27
- uses: fossas/fossa-action@main
28
with:
29
api-key: ${{ secrets.FOSSA_API_KEY }}
0 commit comments