Skip to content

WOSPM/wospm-checker-github-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WOSPM Checker Github Action

This action is for executing WOSPM Checker tool in your pipeline. It will create HTML report which is downloadable as artifact.

Inputs

No input is needed.

Outputs

No output is given.

Example usage

name: WOSPM Checker
on: [push]

jobs:
  wospm_checker:
    runs-on: ubuntu-latest
    name: WOSPM Checker
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: WOSPM Checker Github Action
        uses: WOSPM/wospm-checker-github-action@v1
      - name: Upload HTML Report When Success
        uses: actions/upload-artifact@v1
        with:
          name: HTML Report
          path: wospm.html
      - name: Upload HTML Report When Failed
        uses: actions/upload-artifact@v1
        if: failure()
        with:
          name: HTML Report
          path: wospm.html

About

WOSPM Checker Github Action

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors