Update test.yml #3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test the Action | |
| on: | |
| push: | |
| branches: ["main"] | |
| jobs: | |
| test-rsmetacheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v4 | |
| - name: Test RSMetaCheck | |
| # "uses: ./" tells GitHub to use the action | |
| # defined in the root of the CURRENT repository. | |
| uses: SoftwareUnderstanding/rs-metacheck-action@v0.3.0 | |
| with: | |
| input: "https://github.com/${{ github.repository }}" | |
| verbose: "true" | |
| - name: Verify outputs generated | |
| run: | | |
| ls -la | |
| ls -la pitfalls_outputs |