Skip to content

updating deposition workflow #18

updating deposition workflow

updating deposition workflow #18

Workflow file for this run

name: Workflow Build All
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: '0 0 * * 1'
jobs:
test-Classical_Networking_Workflow:
runs-on: self-hosted
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
token: ${{ secrets.TOKEN }}
- name: Conda Build
run: |
cd Classical_Networking_Workflow && mamba env create -n test_networking -f ./bin/conda_env.yml -y
# remove test
mamba remove -n test_networking --all -y
test-FBMN:
runs-on: self-hosted
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
token: ${{ secrets.TOKEN }}
- name: Conda Build
run: |
cd Feature_Based_Molecular_Networking_Workflow && mamba env create -n test_fbmn -f ./bin/conda_env.yml -y
# remove test
mamba remove -n test_fbmn --all -y