Fixes #52 - Ensure key/cert are in a consistent state despite errors #63
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: License Scanning | |
on: | |
- pull_request | |
- push | |
jobs: | |
fossa: | |
# This job is only useful when run on upstream | |
if: github.repository == 'nginxinc/ngx-rust' || github.event_name == 'workflow_dispatch' | |
runs-on: FOSSA scan | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run FOSSA scan and upload build data | |
uses: fossa-contrib/fossa-action@v3 | |
with: | |
fossa-api-key: ${{ secrets.FOSSA_API_KEY }} |