Merge branch 'main' into rename-catalog-info-20240923 #52
This file contains 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: Validate Test README | |
on: | |
push: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: lint & test | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./ | |
with: | |
filepath: ${{ github.workspace }}/fixtures/good.md | |
- name: Shellcheck Lint | |
run: make lint | |
- name: Test "Bad" cases are rejected | |
run: make test | |