Skip to content

Commit 2dd16d5

Browse files
Testing rsmetacheck actions
1 parent 90d7ec4 commit 2dd16d5

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)