fix(SNP-1286): rules member ordering #14
Workflow file for this run
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: On pull request | |
on: | |
pull_request: | |
jobs: | |
check_branch_content: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Content | |
id: check_files | |
uses: andstor/file-existence-action@v3 | |
with: | |
files: "LICENSE, README.md, CHANGELOG.md, CONTRIBUTING.md" | |
- name: File exists | |
if: steps.check_files.outputs.files_exists == 'true' | |
run: echo Content is ok! | |
- name: Check Overview | |
run: echo | grep -q Overview README.md ; echo $? | |
- name: Check Example | |
run: echo | grep -q Example README.md ; echo $? | |
- name: Check Installation | |
run: echo | grep -q Installation README.md ; echo $? |