-
-
Notifications
You must be signed in to change notification settings - Fork 33
23 lines (22 loc) · 600 Bytes
/
wospm.yml
File metadata and controls
23 lines (22 loc) · 600 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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