nosetests.yml 557 B

1234567891011121314151617181920212223242526
  1. name: Run nose tests
  2. on:
  3. push:
  4. branches:
  5. - main
  6. - enh_simplify
  7. pull_request:
  8. branches:
  9. - master
  10. - enh_simplify
  11. jobs:
  12. build:
  13. runs-on: ubuntu-latest
  14. steps:
  15. - uses: actions/checkout@v2
  16. - name: Install Python 3
  17. uses: actions/setup-python@v1
  18. with:
  19. python-version: 3.7
  20. - name: Install dependencies
  21. run: |
  22. python -m pip install --upgrade pip
  23. pip install -r requirements.txt
  24. - name: Run nosetests
  25. run: nosetests dataladmetadatamodel