Adding test file #3
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 PR before adding to merge queue | |
on: | |
pull_request: | |
jobs: | |
validate-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Display info | |
run: | | |
pwd | |
tree -a -I '.git' | |
git status | |
- name: Run fast CI (emulated by a short sleep) | |
run: ./pr-check.sh |