1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 12:54:05 +00:00
tenancy/.github/workflows/validate.yml
2023-11-21 02:03:00 +01:00

17 lines
504 B
YAML

on: [push, pull_request]
jobs:
validate:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v2
- name: Check for todo0
run: '! grep -r "todo0" --exclude-dir=workflows .'
- name: Check for todo1
run: '! grep -r "todo1" --exclude-dir=workflows .'
- name: Check for todo2
run: '! grep -r "todo2" --exclude-dir=workflows .'
- name: Check for skip() in tests
run: '! grep -r "skip(" --exclude-dir=workflows tests/'