Make morph maps work with resource syncing #773
Workflow file for this run
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: Validate code | |
| on: [push, pull_request] | |
| jobs: | |
| validate: | |
| name: Validate code | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Check for priority todos | |
| run: '! grep -r "todo[0-9]" --exclude-dir=workflows .' | |
| if: always() | |
| - name: Check for non-todo skip()s in tests | |
| run: '! grep -r "skip(" --exclude-dir=workflows tests/ | grep -v "todo"' | |
| if: always() |