Update MeSH predictions and curations (#168) #350
This file contains 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: Upload to NDEx | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
paths: | |
- 'src/biomappings/resources/mappings.tsv' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: "3.9" | |
- name: Install dependencies | |
run: | | |
pip install tox | |
- name: Upload to NDEx | |
run: tox -e upload-ndex | |
env: | |
NDEX_USERNAME: ${{ secrets.NDEX_USERNAME }} | |
NDEX_PASSWORD: ${{ secrets.NDEX_PASSWORD }} |