#769 Fix the processor not processing the last record, add unit tests. #506
Workflow file for this run
This file contains hidden or 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: FOSSA License Scanning | |
| on: | |
| push: | |
| paths-ignore: | |
| - '**.md' | |
| - '**.csv' | |
| - '**.plot' | |
| - '**.properties' | |
| - '**.json' | |
| - '**.svg' | |
| jobs: | |
| fossa: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Run FOSSA scan and upload build data | |
| uses: fossa-contrib/fossa-action@v2 | |
| with: | |
| fossa-api-key: ${{secrets.FOSSA_API_KEY}} |