Add description of how we vet requests to join obo-discuss #3015
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
| # Workflow for MRO Testing | |
| name: OBOFoundry Test | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| if: github.triggering_actor != 'github-actions[bot]' | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-python@v2 | |
| with: | |
| python-version: '3.9' | |
| - name: Install requirements | |
| run: | | |
| python3 -m pip install -r requirements.txt | |
| - name: Run tests | |
| run: | | |
| make test |