We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b390a3 commit 2e3bd2bCopy full SHA for 2e3bd2b
1 file changed
.github/worflows/rsmetacheck.yml
@@ -0,0 +1,29 @@
1
+name: RsMetaCheck
2
+
3
+on:
4
+ push:
5
+ branches: ["main"]
6
+ pull_request:
7
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
28
+ name: metadata-report
29
+ path: ./pitfalls_results/
0 commit comments