Create gadpp.yml #142
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: 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 |