Skip to content

Commit 2e3bd2b

Browse files
Adding rsmetacheck github action
1 parent 0b390a3 commit 2e3bd2b

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

.github/worflows/rsmetacheck.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: RsMetaCheck
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
pull_request:
7+
branches: ["main"]
8+
workflow_dispatch:
9+
10+
jobs:
11+
validate:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout your code
15+
uses: actions/checkout@v4
16+
17+
- name: Run RsMetaCheck
18+
19+
uses: SoftwareUnderstanding/rs-metacheck-action@main
20+
with:
21+
input: "https://github.com/${{ github.repository }}"
22+
pitfalls_output: "./pitfalls_results"
23+
verbose: "true"
24+
25+
- name: Save Results
26+
uses: actions/upload-artifact@v4
27+
with:
28+
name: metadata-report
29+
path: ./pitfalls_results/

0 commit comments

Comments
 (0)