SCP-48 Extract licenses from results #10
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Action | |
on: | |
pull_request: | |
push: | |
branches: | |
- '*' | |
permissions: | |
contents: read | |
jobs: | |
test-action: | |
name: GitHub Actions Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
id: checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
id: setup-python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- run: pip install scanoss[fast_winnowing] scancode-toolkit | |
- name: Test Local Action | |
id: test-action | |
uses: ./ | |
- name: Print Output | |
id: output | |
run: ${{ steps.test-action.outputs.licenses }} |