We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90d7ec4 commit 2dd16d5Copy full SHA for 2dd16d5
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,25 @@
1
+name: Test the Action
2
+
3
+on:
4
+ push:
5
+ branches: ["main"]
6
7
+jobs:
8
+ test-rsmetacheck:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout Code
12
+ uses: actions/checkout@v4
13
14
+ - name: Run RsMetaCheck locally
15
+ # "uses: ./" tells GitHub to use the action
16
+ # defined in the root of the CURRENT repository.
17
+ uses: ./
18
+ with:
19
+ input: "https://github.com/${{ github.repository }}"
20
+ verbose: "true"
21
22
+ - name: Verify outputs generated
23
+ run: |
24
+ ls -la
25
+ ls -la pitfalls_outputs
0 commit comments