1234567891011121314151617181920212223242526 |
- name: Run nose tests
- on:
- push:
- branches:
- - main
- - enh_simplify
- pull_request:
- branches:
- - master
- - enh_simplify
- jobs:
- build:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - name: Install Python 3
- uses: actions/setup-python@v1
- with:
- python-version: 3.7
- - name: Install dependencies
- run: |
- python -m pip install --upgrade pip
- pip install -r requirements.txt
- - name: Run nosetests
- run: nosetests dataladmetadatamodel
|